From 60b2224ec39d526e2227c06ff04fc52038e8f1a7 Mon Sep 17 00:00:00 2001 From: hamed <15238-genius.ha@users.noreply.drupalcode.org> Date: Thu, 25 Jun 2026 19:42:42 +0330 Subject: [PATCH] Add AST cache files for representation API and ApiIrService - Created a new JSON file for the representation API documentation, including nodes and edges that describe the API structure and relationships. - Added another JSON file for the ApiIrService class, detailing its methods, imports, and relationships with other components. --- .../admin/pages/RepresentationProfilePage.tsx | 17 +- docs/api/representation.md | 5 +- graphify-out/.graphify_labels.json | 14 - graphify-out/GRAPH_REPORT.md | 240 +- ...81e287ea63ee89223b94d61c7e605a0870462.json | 1 + ...97b603219213b9bf888c4dfc2e49aae7edfa5.json | 1 + ...517143950c4ccd24fc5c7e663d9fe5510b031.json | 1 + graphify-out/cache/stat-index.json | 2 +- graphify-out/graph.json | 41599 ++++++++-------- graphify-out/manifest.json | 16 +- 10 files changed, 20928 insertions(+), 20968 deletions(-) create mode 100644 graphify-out/cache/ast/v0.8.44/44709f6d2216f40e2a0c3c37dd581e287ea63ee89223b94d61c7e605a0870462.json create mode 100644 graphify-out/cache/ast/v0.8.44/50fa1f98dc328a71a1f086deb5197b603219213b9bf888c4dfc2e49aae7edfa5.json create mode 100644 graphify-out/cache/ast/v0.8.44/aa6b3e431ca5e81396cb1a7791e517143950c4ccd24fc5c7e663d9fe5510b031.json diff --git a/assets/admin/pages/RepresentationProfilePage.tsx b/assets/admin/pages/RepresentationProfilePage.tsx index a205ae64..155dcdbe 100644 --- a/assets/admin/pages/RepresentationProfilePage.tsx +++ b/assets/admin/pages/RepresentationProfilePage.tsx @@ -52,11 +52,12 @@ export default function RepresentationProfilePage() { }); const addIbanMut = useMutation({ - mutationFn: (v: string) => - api.post>('/api/v1/representation/iban', { iban: v }), + mutationFn: (payload: { iban: string; birth_date: string }) => + api.post>('/api/v1/representation/iban', payload), onSuccess: () => { toast.success('شماره شبا تأیید و اضافه شد'); setIban(''); + setBirthDate(''); qc.invalidateQueries({ queryKey: ['representation-me'] }); }, onError: (e: Error) => toast.error(e.message), @@ -80,7 +81,10 @@ export default function RepresentationProfilePage() { const submitIban = () => { if (!iban.trim()) { toast.error('شماره شبا را وارد کنید'); return; } - addIbanMut.mutate(iban.trim()); + if (!/^\d{4}[\/\-.]\d{1,2}[\/\-.]\d{1,2}$/.test(birthDate.trim())) { + toast.error('تاریخ تولد را به صورت 1370/01/01 وارد کنید'); return; + } + addIbanMut.mutate({ iban: iban.trim(), birth_date: birthDate.trim() }); }; return ( @@ -167,11 +171,16 @@ export default function RepresentationProfilePage() { onChange={(e) => setIban(e.target.value)} style={{ width: 320, height: 38, padding: '0 12px', borderRadius: 'var(--r-sm)', border: '1px solid var(--border)', background: 'var(--surface)', color: 'var(--text)', fontSize: 13, boxSizing: 'border-box', fontFamily: 'monospace' }} /> + setBirthDate(e.target.value)} + style={{ width: 180, height: 38, padding: '0 12px', borderRadius: 'var(--r-sm)', border: '1px solid var(--border)', background: 'var(--surface)', color: 'var(--text)', fontSize: 13, boxSizing: 'border-box', textAlign: 'center' }} + /> - مالکیت با استعلام بررسی می‌شود + تاریخ تولد فقط برای استعلام مالکیت شبا استفاده می‌شود و ذخیره نمی‌شود. )} diff --git a/docs/api/representation.md b/docs/api/representation.md index fddd3851..51f9f060 100644 --- a/docs/api/representation.md +++ b/docs/api/representation.md @@ -301,11 +301,12 @@ Get yearly earnings dashboard for a representation. #### Request Body ```json -{ "iban": "IR000000000000000000000000" } +{ "iban": "IR000000000000000000000000", "birth_date": "1370/01/01" } ``` | Field | Type | Required | Description | |-------|------|----------|-------------| | `iban` | string | ✅ | شماره شبا (با/بدون `IR` و فاصله؛ نرمال‌سازی می‌شود) | +| `birth_date` | string | ✅ | تاریخ تولد شمسی `Y/m/d` (نمونه `1370/01/01`). فقط برای استعلام IbanMatch؛ **ذخیره نمی‌شود.** | #### Response `200` آبجکت پروفایل نماینده با `bank_account` به‌روزشده. @@ -315,7 +316,7 @@ Get yearly earnings dashboard for a representation. |------|------|-------------| | `ERR_IDENTITY_004` | 409 | کد ملی هنوز تأیید نشده | | `ERR_IDENTITY_003` | 409 | سقف ۲ شبا پر است | -| `ERR_VALIDATION_001` | 422 | شبا نامعتبر (`field: iban`) | +| `ERR_VALIDATION_001` | 422 | شبا نامعتبر (`field: iban`) یا تاریخ تولد نامعتبر (`field: birth_date`) | | `ERR_IDENTITY_002` | 422 | شبا متعلق به نماینده نیست (`field: iban`) | | `ERR_EXTERNAL_001` | 502 | خطا در استعلام | | `ERR_EXTERNAL_002` | 503 | سرویس استعلام پیکربندی نشده | diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index 50dc805a..4ff04614 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -540,7 +540,6 @@ "538": "Community 538", "539": "Community 539", "540": "Community 540", - "541": "Community 541", "542": "Community 542", "543": "Community 543", "544": "Community 544", @@ -571,12 +570,7 @@ "569": "Community 569", "570": "Community 570", "571": "Community 571", - "572": "Community 572", - "573": "Community 573", - "574": "Community 574", "575": "Community 575", - "576": "Community 576", - "577": "Community 577", "578": "Community 578", "579": "Community 579", "580": "Community 580", @@ -592,10 +586,6 @@ "590": "Community 590", "591": "Community 591", "592": "Community 592", - "593": "Community 593", - "594": "Community 594", - "595": "Community 595", - "596": "Community 596", "597": "Community 597", "598": "Community 598", "599": "Community 599", @@ -605,10 +595,6 @@ "603": "Community 603", "604": "Community 604", "605": "Community 605", - "606": "Community 606", - "607": "Community 607", - "608": "Community 608", - "609": "Community 609", "610": "Community 610", "611": "Community 611", "612": "Community 612", diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 7a9119e9..b6ebb431 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,16 +1,16 @@ # Graph Report - clinicpro (2026-06-25) ## Corpus Check -- 582 files · ~424,369 words +- 582 files · ~424,686 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 7728 nodes · 10590 edges · 631 communities (525 shown, 106 thin omitted) +- 7729 nodes · 10592 edges · 617 communities (511 shown, 106 thin omitted) - Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 254 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `9b608aae` +- Built from commit: `c2c6ae4d` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -556,7 +556,6 @@ - [[_COMMUNITY_Community 538|Community 538]] - [[_COMMUNITY_Community 539|Community 539]] - [[_COMMUNITY_Community 540|Community 540]] -- [[_COMMUNITY_Community 541|Community 541]] - [[_COMMUNITY_Community 542|Community 542]] - [[_COMMUNITY_Community 543|Community 543]] - [[_COMMUNITY_Community 544|Community 544]] @@ -585,12 +584,7 @@ - [[_COMMUNITY_Community 569|Community 569]] - [[_COMMUNITY_Community 570|Community 570]] - [[_COMMUNITY_Community 571|Community 571]] -- [[_COMMUNITY_Community 572|Community 572]] -- [[_COMMUNITY_Community 573|Community 573]] -- [[_COMMUNITY_Community 574|Community 574]] - [[_COMMUNITY_Community 575|Community 575]] -- [[_COMMUNITY_Community 576|Community 576]] -- [[_COMMUNITY_Community 577|Community 577]] - [[_COMMUNITY_Community 578|Community 578]] - [[_COMMUNITY_Community 579|Community 579]] - [[_COMMUNITY_Community 580|Community 580]] @@ -604,10 +598,6 @@ - [[_COMMUNITY_Community 590|Community 590]] - [[_COMMUNITY_Community 591|Community 591]] - [[_COMMUNITY_Community 592|Community 592]] -- [[_COMMUNITY_Community 593|Community 593]] -- [[_COMMUNITY_Community 594|Community 594]] -- [[_COMMUNITY_Community 595|Community 595]] -- [[_COMMUNITY_Community 596|Community 596]] - [[_COMMUNITY_Community 597|Community 597]] - [[_COMMUNITY_Community 598|Community 598]] - [[_COMMUNITY_Community 599|Community 599]] @@ -617,10 +607,6 @@ - [[_COMMUNITY_Community 603|Community 603]] - [[_COMMUNITY_Community 604|Community 604]] - [[_COMMUNITY_Community 605|Community 605]] -- [[_COMMUNITY_Community 606|Community 606]] -- [[_COMMUNITY_Community 607|Community 607]] -- [[_COMMUNITY_Community 608|Community 608]] -- [[_COMMUNITY_Community 609|Community 609]] - [[_COMMUNITY_Community 610|Community 610]] - [[_COMMUNITY_Community 611|Community 611]] - [[_COMMUNITY_Community 612|Community 612]] @@ -649,21 +635,21 @@ assets/admin/components/ServiceTariffModal.tsx → assets/admin/lib/utils.ts - `Pagination()` --calls--> `formatNumber()` [EXTRACTED] assets/admin/components/ui/Pagination.tsx → assets/admin/lib/utils.ts +- `PersianDatePicker()` --calls--> `formatDate()` [EXTRACTED] + assets/admin/components/ui/PersianDatePicker.tsx → assets/admin/lib/utils.ts - `SettlementsPage()` --calls--> `formatRial()` [EXTRACTED] assets/admin/pages/SettlementsPage.tsx → assets/admin/lib/utils.ts - `NewAppointmentModal()` --calls--> `useAuthStore` [EXTRACTED] assets/admin/pages/AppointmentsPage.tsx → assets/admin/stores/authStore.ts -- `LogoUploadField()` --calls--> `useAuthStore` [EXTRACTED] - assets/admin/pages/CategoriesPage.tsx → assets/admin/stores/authStore.ts ## Import Cycles - None detected. -## Communities (631 total, 106 thin omitted) +## Communities (617 total, 106 thin omitted) ### Community 0 - "Community 0" -Cohesion: 0.04 -Nodes (54): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, useSubscription(), avatarBg() (+46 more) +Cohesion: 0.05 +Nodes (40): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, AddForm, addSchema (+32 more) ### Community 1 - "Community 1" Cohesion: 0.03 @@ -671,11 +657,11 @@ Nodes (42): iranMobileOptionalSchema, AddressData, AddrForm, addrSchema, AVATAR_ ### Community 2 - "Community 2" Cohesion: 0.05 -Nodes (51): FreeVisitPrice(), Pricing, usePaymentConfig(), api, ApiResponse, getToken(), refreshOnce(), request() (+43 more) +Nodes (43): FreeVisitPrice(), Pricing, api, ApiResponse, getToken(), refreshOnce(), request(), formatDateTime() (+35 more) ### Community 3 - "Community 3" -Cohesion: 0.05 -Nodes (40): PaginatedResponse, maskMobile(), STATUS_FILTERS, FILTERS, Breakdown, SOURCE_LABEL, Summary, ACTION_HEADERS (+32 more) +Cohesion: 0.04 +Nodes (72): PaginatedResponse, formatDate(), maskMobile(), ALL_STATUSES, STATUS_FILTERS, FILTERS, Breakdown, SOURCE_LABEL (+64 more) ### Community 4 - "Community 4" Cohesion: 0.06 @@ -686,16 +672,16 @@ Cohesion: 0.07 Nodes (3): UserProfile, self, User ### Community 6 - "Community 6" -Cohesion: 0.07 -Nodes (19): SettlementController, FinancialBreakdown, FinancialBreakdownRepository, SettlementRepository, WalletTransactionRepository, CommissionService, Settlement, JsonResponse (+11 more) +Cohesion: 0.09 +Nodes (15): SettlementController, SettlementRepository, WalletTransactionRepository, CommissionService, Settlement, JsonResponse, Request, User (+7 more) ### Community 7 - "Community 7" Cohesion: 0.07 Nodes (5): Clinic, Collection, Doctor, self, User ### Community 8 - "Community 8" -Cohesion: 0.05 -Nodes (39): ALL_STATUSES, RepresentationDetailPage(), STATUS_LOG_META, Tab, TAG_FILTER_OPTIONS, TAG_LABELS, TemplateFormData, templateSchema (+31 more) +Cohesion: 0.09 +Nodes (26): useSubscription(), AdminLayout(), avatarBg(), buildSections(), HUES, Props, ROLE_LABELS, Section (+18 more) ### Community 9 - "Community 9" Cohesion: 0.04 @@ -706,8 +692,8 @@ Cohesion: 0.04 Nodes (46): Clinic Address Management, Clinic API, DELETE `/api/v1/admin/clinic/{clinicUuid}/doctor/{doctorUuid}`, `DELETE /api/v1/clinic/{clinicUuid}/address/{addressUuid}`, Errors, Errors, Errors, Errors (+38 more) ### Community 11 - "Community 11" -Cohesion: 0.05 -Nodes (31): formatDate(), formatDateTime(), toDate(), AppointmentDetailPage(), Claim, ClaimItem, DebtRow, InsuranceOption (+23 more) +Cohesion: 0.12 +Nodes (9): Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL, STATUS_FILTERS, STATUS_META, PersianDatePicker() (+1 more) ### Community 12 - "Community 12" Cohesion: 0.05 @@ -726,8 +712,8 @@ Cohesion: 0.10 Nodes (13): PaymentController, MockGateway, SepGateway, JsonResponse, Payment, PaymentGatewayInterface, Request, Response (+5 more) ### Community 16 - "Community 16" -Cohesion: 0.08 -Nodes (7): PatientSession, AppointmentExpiryService, Appointment, Collection, PatientRecord, self, SessionService +Cohesion: 0.07 +Nodes (7): PatientSession, SmsWallet, Appointment, Collection, PatientRecord, self, SessionService ### Community 17 - "Community 17" Cohesion: 0.05 @@ -738,8 +724,8 @@ Cohesion: 0.05 Nodes (38): API, API, API, API, API, Route, Route, Route (+30 more) ### Community 19 - "Community 19" -Cohesion: 0.07 -Nodes (25): Contract, InsuranceOption, KIND_LABEL, AdminLayout(), Topbar(), FormData, schema, Contract (+17 more) +Cohesion: 0.06 +Nodes (27): Contract, InsuranceOption, KIND_LABEL, FormData, schema, Contract, CoverageRow, fieldLabel (+19 more) ### Community 20 - "Community 20" Cohesion: 0.15 @@ -762,16 +748,16 @@ Cohesion: 0.08 Nodes (3): City, Province, self ### Community 25 - "Community 25" -Cohesion: 0.06 -Nodes (34): Appointment API, Error Responses, Errors, Errors, Errors, Errors, Errors, Errors (+26 more) +Cohesion: 0.05 +Nodes (39): Appointment API, Error Responses, Errors, Errors, Errors, Errors, Errors, Errors (+31 more) ### Community 26 - "Community 26" -Cohesion: 0.15 -Nodes (7): InsuranceController, EntityInsurancePricing, EntityInsurancePricingRepository, JsonResponse, Request, User, ManagerRegistry +Cohesion: 0.23 +Nodes (4): InsuranceController, JsonResponse, Request, User ### Community 27 - "Community 27" Cohesion: 0.06 -Nodes (35): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 61. 🔵 `POST` post, 63. 🔴 `DELETE` DELETE (+27 more) +Nodes (35): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 62. 🟡 `PATCH` patch, 63. 🔴 `DELETE` DELETE (+27 more) ### Community 28 - "Community 28" Cohesion: 0.09 @@ -814,8 +800,8 @@ Cohesion: 0.06 Nodes (31): API endpoint موجود برای آدرس دکتر:, `DELETE /api/v1/clinic/{clinicUuid}/address/{addressUuid}` — حذف, `docs/api/appointment-settings.md`:, `docs/api/clinic.md`:, Endpoint موجود (workaround که حذف می‌شود):, Entity `DoctorAddress`:, Frontend موجود (`DoctorDetailPage.tsx`):, `GET /api/v1/clinic/{clinicUuid}/addresses` — لیست آدرس‌ها (+23 more) ### Community 38 - "Community 38" -Cohesion: 0.06 -Nodes (31): Authentication API, DELETE `/api/v1/notification-mobile/{target}`, Error Codes, Error Codes, Error Codes, Errors, Errors, Errors (+23 more) +Cohesion: 0.22 +Nodes (8): Authentication API, DELETE `/api/v1/notification-mobile/{target}`, Errors, Notification Mobile (OTP), POST `/oauth/logout`, Request Body, Response `200`, Response `200` ### Community 39 - "Community 39" Cohesion: 0.12 @@ -874,8 +860,8 @@ Cohesion: 0.07 Nodes (26): الزامات UI, باگ‌فیکس صفحه نوبت‌ها, باگ ۱ — کرش تقویم, باگ ۲ — روز هفته در DateNavigator, باگ ۳ — پیام «slot نیست», باگ ۴ — نوبت جدید: نام اجباری + find-or-create patient, باگ ۵ — patient_mobile نشان می‌دهد موبایل پزشک, باگ ۶ — نوبت‌های رزرو شده در نمایش زمانبندی (+18 more) ### Community 53 - "Community 53" -Cohesion: 0.12 -Nodes (12): ClaimItem, ClaimItemRepository, InvoiceRepository, PreRegistrationRepository, TaxRateHistoryRepository, ServiceEntityRepository, ManagerRegistry, ManagerRegistry (+4 more) +Cohesion: 0.11 +Nodes (11): ClaimItem, DoctorInsurance, ClaimItemRepository, DoctorInsuranceRepository, PreRegistrationRepository, SiteConfigRepository, ServiceEntityRepository, ManagerRegistry (+3 more) ### Community 54 - "Community 54" Cohesion: 0.10 @@ -894,8 +880,8 @@ Cohesion: 0.08 Nodes (24): Blog API, DELETE `/api/v1/blog/{uuid}`, Errors, Errors, Errors, Errors, Errors, GET `/api/v1/blog/{slug}` (+16 more) ### Community 58 - "Community 58" -Cohesion: 0.15 -Nodes (8): Blog, BlogController, QueryBuilder, BlogRepository, JsonResponse, Request, User, ManagerRegistry +Cohesion: 0.28 +Nodes (4): Blog, QueryBuilder, BlogRepository, ManagerRegistry ### Community 59 - "Community 59" Cohesion: 0.22 @@ -942,7 +928,7 @@ Cohesion: 0.31 Nodes (6): ErrorCodes, ClinicServiceController, JsonResponse, Request, ServiceSection, User ### Community 71 - "Community 71" -Cohesion: 0.26 +Cohesion: 0.24 Nodes (5): RepresentationActionController, JsonResponse, Representation, Request, User ### Community 72 - "Community 72" @@ -1290,8 +1276,8 @@ Cohesion: 0.13 Nodes (14): autoload, autoload-dev, psr-4, psr-4, conflict, symfony/symfony, description, license (+6 more) ### Community 164 - "Community 164" -Cohesion: 0.29 -Nodes (3): SmsController, JsonResponse, Request +Cohesion: 0.17 +Nodes (6): SmsController, SmsTemplateRepository, SmsTemplate, JsonResponse, Request, ManagerRegistry ### Community 165 - "Community 165" Cohesion: 0.13 @@ -1358,8 +1344,8 @@ Cohesion: 0.23 Nodes (3): WeeklySchedule, Doctor, self ### Community 182 - "Community 182" -Cohesion: 0.15 -Nodes (11): emptyFeatures(), FEATURE_KEYS, FEATURE_LABELS, PeriodForm, periodSchema, PLAN_DISPLAY, PlanForm, planSchema (+3 more) +Cohesion: 0.06 +Nodes (30): usePaymentConfig(), emptyFeatures(), FEATURE_KEYS, FEATURE_LABELS, PeriodForm, periodSchema, PLAN_DISPLAY, PlanForm (+22 more) ### Community 183 - "Community 183" Cohesion: 0.14 @@ -1430,8 +1416,8 @@ Cohesion: 0.14 Nodes (13): Endpoint ها, PATCH /api/v1/secretary/{uuid}, POST /api/v1/secretary, تسک ۱۴: ماژول منشی, توضیح, زمان تخمینی, ساختار JSON, سیستم مجوزها — Resource-Based Permissions (مقیاس‌پذیر) (+5 more) ### Community 200 - "Community 200" -Cohesion: 0.23 -Nodes (5): AbstractMigration, Schema, Version20260614182549, Schema, Version20260622184409 +Cohesion: 0.43 +Nodes (3): AbstractMigration, Schema, Version20260622184409 ### Community 201 - "Community 201" Cohesion: 0.15 @@ -1526,12 +1512,12 @@ Cohesion: 0.30 Nodes (6): AbstractAuthenticator, Passport, PasswordAuthenticator, Request, Response, TokenInterface ### Community 228 - "Community 228" -Cohesion: 0.17 -Nodes (11): DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, GET `/api/v1/insurance/{id}`, GET `/api/v1/insurance-pricing`, Insurance API, Response `200`, Response `200` (+3 more) +Cohesion: 0.06 +Nodes (33): DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/billing/tenant-insurances/{uuid}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, Errors, Errors, GET `/api/v1/admin/insurances`, GET `/api/v1/billing/tenant-insurances` (+25 more) ### Community 229 - "Community 229" -Cohesion: 0.17 -Nodes (11): DELETE `/api/v1/representation/{uuid}`, Errors, Errors, GET `/api/v1/representation/{uuid}`, GET `/api/v1/representation/{uuid}/dashboard/yearly`, Path Parameters, Query Parameters, Representation (Agent) API (+3 more) +Cohesion: 0.15 +Nodes (12): DELETE `/api/v1/representation/{uuid}`, Errors, Errors, GET `/api/v1/representation/{uuid}/dashboard/monthly`, GET `/api/v1/representation/{uuid}/dashboard/yearly`, Path Parameters, Query Parameters, Query Parameters (+4 more) ### Community 230 - "Community 230" Cohesion: 0.35 @@ -1550,8 +1536,8 @@ Cohesion: 0.21 Nodes (3): SmsWalletTransaction, Payment, SmsWallet ### Community 235 - "Community 235" -Cohesion: 0.20 -Nodes (8): AdminUser, ChangeRoleModal(), getPrimaryRole(), HUES_LIST, ROLE_META, ROLE_TABS, RoleBadge(), UserStats +Cohesion: 0.13 +Nodes (12): AdminUserDetail, AVATAR_COLORS, EditForm, editSchema, GENDER_LABELS, getPrimaryRole(), MARITAL_LABELS, MEDICAL_SECTIONS (+4 more) ### Community 236 - "Community 236" Cohesion: 0.17 @@ -1698,7 +1684,7 @@ Cohesion: 0.18 Nodes (10): Endpoint های موجود که تغییر می‌کنند, GET /api/v1/admin/dashboard/charts?from=UNIX&to=UNIX, GET /api/v1/dashboard/clinic, GET /api/v1/dashboard/doctor, تسک ۱۶: داشبورد هوشمند — چارت + فیلتر زمانی, توضیح, زمان تخمینی, فیلتر بازه زمانی (+2 more) ### Community 274 - "Community 274" -Cohesion: 0.24 +Cohesion: 0.28 Nodes (5): Authentication, ClinicPro — API Documentation Index, Error Code Reference, Modules, Standard Response Envelope ### Community 275 - "Community 275" @@ -1810,8 +1796,12 @@ Cohesion: 0.28 Nodes (4): imgJson(), mobile(), ri(), uuid() ### Community 304 - "Community 304" -Cohesion: 0.22 -Nodes (9): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 42. 🔴 `DELETE` delete, 6. کلینیک (Clinic), هدرهای اضافی, پارامترهای Query, پاسخ‌ها, پاسخ‌ها (+1 more) +Cohesion: 0.04 +Nodes (46): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 33. 🔵 `POST` image_clinic, 34. 🔵 `POST` image logo, 36. 🟢 `GET` get my rate, 37. 🔵 `POST` post, 38. 🟢 `GET` Unapproved comments, 39. 🟡 `PATCH` Comment confirmation (+38 more) + +### Community 306 - "Community 306" +Cohesion: 0.33 +Nodes (4): BlogController, JsonResponse, Request, User ### Community 307 - "Community 307" Cohesion: 0.28 @@ -1910,8 +1900,8 @@ Cohesion: 0.22 Nodes (8): Query های جدید, بیماران منحصربه‌فرد در بازه, درآمد بر اساس روز (از patient_sessions), فروش اشتراک بر اساس پنل (admin), نوبت‌ها بر اساس روز (admin chart), نکات مهم, هیچ migration لازم نیست, پایگاه داده — تسک ۱۶: داشبورد هوشمند ### Community 333 - "Community 333" -Cohesion: 0.25 -Nodes (7): DELETE `/api/v1/clinic-pro/doctor-address/{id}`, Doctor API, Errors, GET `/api/v1/doctors`, Query Parameters, Response `200`, Response `200` +Cohesion: 0.06 +Nodes (32): DELETE `/api/v1/clinic-pro/doctor-address/{id}`, DELETE `/api/v1/doctor/{uuid}`, Doctor API, Errors, Errors, Errors, Errors, Errors (+24 more) ### Community 334 - "Community 334" Cohesion: 0.25 @@ -1938,8 +1928,8 @@ Cohesion: 0.43 Nodes (5): BeforeInstallPromptEvent, usePwaInstall(), PwaInstallBanner(), detectIOS(), PwaLoginCard() ### Community 341 - "Community 341" -Cohesion: 0.25 -Nodes (7): license, optionalDependencies, lightningcss-darwin-arm64, lightningcss-linux-arm64-gnu, @tailwindcss/oxide-darwin-arm64, @tailwindcss/oxide-linux-arm64-gnu, private +Cohesion: 0.40 +Nodes (5): optionalDependencies, lightningcss-darwin-arm64, lightningcss-linux-arm64-gnu, @tailwindcss/oxide-darwin-arm64, @tailwindcss/oxide-linux-arm64-gnu ### Community 342 - "Community 342" Cohesion: 0.25 @@ -1970,8 +1960,8 @@ Cohesion: 0.39 Nodes (3): ProvinceRepository, ManagerRegistry, Province ### Community 349 - "Community 349" -Cohesion: 0.43 -Nodes (3): SmsTemplateRepository, SmsTemplate, ManagerRegistry +Cohesion: 0.36 +Nodes (3): EntityInsurancePricing, EntityInsurancePricingRepository, ManagerRegistry ### Community 350 - "Community 350" Cohesion: 0.43 @@ -2050,8 +2040,8 @@ Cohesion: 0.29 Nodes (7): Authentication, Authorization, Input Validation, Logging Security, Rate Limiting, Secrets Management, ۷. تحلیل امنیت ### Community 371 - "Community 371" -Cohesion: 0.48 -Nodes (3): DoctorInsurance, DoctorInsuranceRepository, ManagerRegistry +Cohesion: 0.39 +Nodes (4): FinancialBreakdown, FinancialBreakdownRepository, ManagerRegistry, Payment ### Community 374 - "Community 374" Cohesion: 0.29 @@ -2081,6 +2071,10 @@ Nodes (7): بک‌اند — endpoint جدید: `GET /api/v1/my/appointments` ` Cohesion: 0.43 Nodes (3): InvoiceItemRepository, InvoiceItem, ManagerRegistry +### Community 381 - "Community 381" +Cohesion: 0.43 +Nodes (3): InvoiceRepository, Invoice, ManagerRegistry + ### Community 382 - "Community 382" Cohesion: 0.29 Nodes (6): Entity: Doctor (بر اساس فیلدهای واقعی Drupal), Entity: DoctorAddress (بر اساس فیلدهای واقعی Drupal), Response کامل دکتر (finalizeData), ساختار فایل‌ها, معماری — تسک ۰۵: ماژول دکتر, منطق create دکتر (از DoctorService.php) @@ -2225,17 +2219,13 @@ Nodes (5): GET `/api/v1/admin/comments`, GET `/api/v1/admin/rates`, Query Parame Cohesion: 0.40 Nodes (5): GET `/api/v1/admin/financial-breakdowns`, GET `/api/v1/admin/financial-summary`, GET `/api/v1/admin/settings/tax-history`, GET `/api/v1/admin/settlement/{uuid}`, موتور مالی نمایندگی -### Community 480 - "Community 480" -Cohesion: 0.40 -Nodes (5): Errors, GET `/api/v1/appointment-settings/month-availability/{doctorUuid}`, Path Parameters, Query Parameters, Response `200` - ### Community 481 - "Community 481" Cohesion: 0.40 Nodes (5): Errors, Notes, POST `/api/v1/notification-mobile/request-otp`, Request Body, Response `200` ### Community 482 - "Community 482" -Cohesion: 0.40 -Nodes (5): Errors, GET `/api/v1/clinic/my-doctor/{doctorUuid}`, Path Parameters, Response `200`, Schedule Fields Notes +Cohesion: 0.53 +Nodes (3): TaxRateHistoryRepository, ManagerRegistry, TaxRateHistory ### Community 483 - "Community 483" Cohesion: 0.40 @@ -2243,15 +2233,15 @@ Nodes (5): Errors, PATCH `/api/v1/doctor/{uuid}`, Path Parameters, Request Body ### Community 484 - "Community 484" Cohesion: 0.40 -Nodes (5): Errors, PATCH `/api/v1/clinic-pro/doctor-address/{id}`, Path Parameters, Request Body, Response `200` +Nodes (5): 61. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 485 - "Community 485" -Cohesion: 0.40 -Nodes (5): DELETE `/api/v1/billing/tenant-insurances/{uuid}`, GET `/api/v1/billing/tenant-insurances`, PATCH `/api/v1/billing/tenant-insurances/{uuid}`, POST `/api/v1/billing/tenant-insurances`, TenantInsurance — قراردادهای بیمه‌ی tenant (فاز ۱ سیستم صورتحساب) +Cohesion: 0.50 +Nodes (4): Error Codes, POST `/api/v1/pre-registration`, Request Body, Response `200` ### Community 486 - "Community 486" -Cohesion: 0.40 -Nodes (5): Errors, GET `/api/v1/representation/{uuid}/dashboard/monthly`, Path Parameters, Query Parameters, Response `200` +Cohesion: 0.50 +Nodes (4): Error Codes, POST `/api/v1/user/otp-login`, Request Body, Response `200` ### Community 487 - "Community 487" Cohesion: 0.40 @@ -2274,24 +2264,24 @@ Cohesion: 0.40 Nodes (5): 35. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 494 - "Community 494" -Cohesion: 0.40 -Nodes (5): 37. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها +Cohesion: 0.50 +Nodes (4): Error Codes, POST `/api/v1/user/reset-password`, Request Body, Response `200` ### Community 495 - "Community 495" Cohesion: 0.40 Nodes (5): 41. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 496 - "Community 496" -Cohesion: 0.40 -Nodes (5): 62. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها +Cohesion: 0.50 +Nodes (4): Errors, POST `/api/v1/user/send-code`, Request Body, Response `200` ### Community 497 - "Community 497" Cohesion: 0.40 Nodes (5): ۲.۸ تنظیمات نوبت (Appointment Settings), ۲.۸.۱ برنامه هفتگی (Weekly Schedule), ۲.۸.۲ تعطیلات (Holidays), ۲.۸.۳ لغو تعطیل (Date Override), ۲.۸.۴ الگوریتم محاسبه اسلات‌های خالی ### Community 498 - "Community 498" -Cohesion: 0.40 -Nodes (5): scripts, build, dev, dev-server, watch +Cohesion: 0.25 +Nodes (7): license, private, scripts, build, dev, dev-server, watch ### Community 499 - "Community 499" Cohesion: 0.40 @@ -2419,15 +2409,11 @@ Nodes (4): Errors, POST `/api/v1/notification-mobile/verify`, Request Body, Resp ### Community 533 - "Community 533" Cohesion: 0.50 -Nodes (4): DELETE `/api/v1/doctor/{uuid}`, Errors, Path Parameters, Response `200` +Nodes (4): Errors, POST `/api/v1/user/verify-code`, Request Body, Response `200` ### Community 534 - "Community 534" Cohesion: 0.50 -Nodes (4): Errors, POST `/api/v1/doctor`, Request Body (`application/json`), Response `201` - -### Community 535 - "Community 535" -Cohesion: 0.50 -Nodes (4): Errors, GET `/api/v1/doctor/{uuid}`, Path Parameters, Response `200` +Nodes (4): Errors, GET `/api/v1/representation/{uuid}`, Path Parameters, Response `200` ### Community 536 - "Community 536" Cohesion: 0.50 @@ -2442,17 +2428,13 @@ Cohesion: 0.50 Nodes (4): Errors, Path Parameters, POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`, Response `201` ### Community 539 - "Community 539" -Cohesion: 0.50 -Nodes (4): Errors, GET `/api/v1/admin/insurances`, Query Parameters, Response `200` +Cohesion: 0.67 +Nodes (3): Errors, GET `/api/v1/notification-mobile/{target}`, Response `200` ### Community 540 - "Community 540" Cohesion: 0.50 Nodes (4): Errors, POST `/api/v1/admin/insurance`, Request Body (`application/json`), Response `201` -### Community 541 - "Community 541" -Cohesion: 0.50 -Nodes (4): Errors, PATCH `/api/v1/admin/insurance/{id}`, Path Parameters, Response `200` - ### Community 542 - "Community 542" Cohesion: 0.50 Nodes (4): Errors, POST `/api/v1/insurance/`, Request Body (`application/json`), Response `201` @@ -2565,30 +2547,10 @@ Nodes (4): با ۱,۰۰۰,۰۰۰ کاربر — نیاز به Refactoring اسا Cohesion: 0.50 Nodes (4): ریسک‌های بحرانی, ریسک‌های عملیاتی, ریسک‌های مهم, ۱۰. ریسک‌های شناسایی‌شده -### Community 572 - "Community 572" -Cohesion: 0.50 -Nodes (4): 38. 🟢 `GET` Unapproved comments, هدرهای اضافی, پارامترهای Query, پاسخ‌ها - -### Community 573 - "Community 573" -Cohesion: 0.50 -Nodes (4): 39. 🟡 `PATCH` Comment confirmation, مثال Request, هدرهای اضافی, پاسخ‌ها - -### Community 574 - "Community 574" -Cohesion: 0.50 -Nodes (4): 40. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها - ### Community 575 - "Community 575" Cohesion: 0.50 Nodes (4): 44. 🟢 `GET` list comment, هدرهای اضافی, پارامترهای Query, پاسخ‌ها -### Community 576 - "Community 576" -Cohesion: 0.50 -Nodes (4): 45. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها - -### Community 577 - "Community 577" -Cohesion: 0.50 -Nodes (4): 46. 🟡 `PATCH` patch, مثال Request, هدرهای اضافی, پاسخ‌ها - ### Community 578 - "Community 578" Cohesion: 0.50 Nodes (4): GET /api/v1/appointment-settings/slots — دریافت اسلات‌های خالی, POST /api/v1/appointment-settings/holidays — ثبت تعطیلی (فقط ادمین), POST /api/v1/appointment-settings/overrides — ثبت Override توسط دکتر, Task-09: API تنظیمات نوبت @@ -2637,22 +2599,6 @@ Nodes (3): Entity: Secretary, ساختار فایل‌ها, معماری — ت Cohesion: 0.50 Nodes (3): Entity: Payment, ساختار فایل‌ها, معماری — تسک ۱۵: ماژول پرداخت -### Community 593 - "Community 593" -Cohesion: 0.67 -Nodes (3): GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`, Path Parameters, Response `200` - -### Community 594 - "Community 594" -Cohesion: 0.67 -Nodes (3): GET `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`, PUT `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`, TenantServiceCoverage — پوشش خدمت تحت یک قرارداد بیمه (فاز ۲) - -### Community 595 - "Community 595" -Cohesion: 0.67 -Nodes (3): GET `/api/v1/insurances`, Query Parameters, Response `200` - -### Community 596 - "Community 596" -Cohesion: 0.67 -Nodes (3): POST `/api/v1/admin/insurance/{id}/upload-logo`, Request, Response `200` - ### Community 597 - "Community 597" Cohesion: 0.67 Nodes (3): DELETE `/api/v1/sms/template/{uuid}`, Errors, Response `200` @@ -2681,22 +2627,6 @@ Nodes (3): ماژول‌های شناسایی‌شده در PRD, موارد پو Cohesion: 0.67 Nodes (3): نقاط ضعف, نقاط قوت, ۶. تحلیل API Design -### Community 606 - "Community 606" -Cohesion: 0.67 -Nodes (3): 33. 🔵 `POST` image_clinic, هدرهای اضافی, پاسخ‌ها - -### Community 607 - "Community 607" -Cohesion: 0.67 -Nodes (3): 34. 🔵 `POST` image logo, هدرهای اضافی, پاسخ‌ها - -### Community 608 - "Community 608" -Cohesion: 0.67 -Nodes (3): 36. 🟢 `GET` get my rate, هدرهای اضافی, پاسخ‌ها - -### Community 609 - "Community 609" -Cohesion: 0.67 -Nodes (3): 43. 🟢 `GET` get, هدرهای اضافی, پاسخ‌ها - ### Community 612 - "Community 612" Cohesion: 0.67 Nodes (3): بک‌اند, فرانت‌اند, وضعیت فعلی کد (مهم — قبل از تغییر بخوان) @@ -2709,8 +2639,8 @@ Nodes (3): بک‌اند, فرانت‌اند, وضعیت فعلی کد (مهم ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 275`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 300`, `Community 301`, `Community 175`, `Community 176`, `Community 177`, `Community 58`, `Community 59`, `Community 63`, `Community 64`, `Community 70`, `Community 71`, `Community 75`, `Community 206`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 109`, `Community 121`, `Community 122`, `Community 251`, `Community 252`?** - _High betweenness centrality (0.031) - this node is a cross-community bridge._ +- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 275`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 300`, `Community 301`, `Community 175`, `Community 176`, `Community 177`, `Community 306`, `Community 59`, `Community 63`, `Community 64`, `Community 70`, `Community 71`, `Community 75`, `Community 206`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 109`, `Community 121`, `Community 122`, `Community 251`, `Community 252`?** + _High betweenness centrality (0.029) - this node is a cross-community bridge._ - **Why does `AppointmentRepository` connect `Community 119` to `Community 53`?** _High betweenness centrality (0.018) - this node is a cross-community bridge._ - **Why does `Version20260614181657` connect `Community 431` to `Community 200`?** @@ -2718,8 +2648,8 @@ _Questions this graph is uniquely positioned to answer:_ - **What connects `ALLOWED_ROLES`, `Pricing`, `TenantInsurance` to the rest of the system?** _3334 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `Community 0` be split into smaller, more focused modules?** - _Cohesion score 0.041801801801801805 - nodes in this community are weakly interconnected._ + _Cohesion score 0.052597402597402594 - nodes in this community are weakly interconnected._ - **Should `Community 1` be split into smaller, more focused modules?** _Cohesion score 0.02857142857142857 - nodes in this community are weakly interconnected._ - **Should `Community 2` be split into smaller, more focused modules?** - _Cohesion score 0.046093064091308165 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.054354178842782 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/44709f6d2216f40e2a0c3c37dd581e287ea63ee89223b94d61c7e605a0870462.json b/graphify-out/cache/ast/v0.8.44/44709f6d2216f40e2a0c3c37dd581e287ea63ee89223b94d61c7e605a0870462.json new file mode 100644 index 00000000..fcfbb788 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/44709f6d2216f40e2a0c3c37dd581e287ea63ee89223b94d61c7e605a0870462.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "label": "RepresentationActionController.php", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L1"}, {"id": "controller_representationactioncontroller_representationactioncontroller", "label": "RepresentationActionController", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L27"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_representationactioncontroller_representationactioncontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L31"}, {"id": "controller_representationactioncontroller_representationactioncontroller_me", "label": ".me()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41"}, {"id": "controller_representationactioncontroller_representationactioncontroller_repprofile", "label": ".repProfile()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62"}, {"id": "representation", "label": "Representation", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62"}, {"id": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "label": ".verifyNationalCode()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70"}, {"id": "controller_representationactioncontroller_representationactioncontroller_addiban", "label": ".addIban()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114"}, {"id": "controller_representationactioncontroller_representationactioncontroller_removeiban", "label": ".removeIban()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L178"}, {"id": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "label": ".normalizeIban()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L200"}, {"id": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "label": ".normalizeBirthDate()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L213"}, {"id": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "label": ".createDoctor()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L231"}, {"id": "controller_representationactioncontroller_representationactioncontroller_createclinic", "label": ".createClinic()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L320"}, {"id": "controller_representationactioncontroller_representationactioncontroller_doctors", "label": ".doctors()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L399"}, {"id": "controller_representationactioncontroller_representationactioncontroller_clinics", "label": ".clinics()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L456"}, {"id": "controller_representationactioncontroller_representationactioncontroller_appointments", "label": ".appointments()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L509"}, {"id": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "label": ".doctorStats()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L587"}, {"id": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "label": ".toggleDoctorStatus()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L618"}, {"id": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "label": ".dashboardSummary()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L649"}, {"id": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "label": ".doctorsPerformance()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L700"}, {"id": "controller_representationactioncontroller_representationactioncontroller_financereport", "label": ".financeReport()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L771"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "appointment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "clinic", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "financialbreakdown", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "representationrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "inputvalidator", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_representation_controller_representationactioncontroller_php", "target": "controller_representationactioncontroller_representationactioncontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L27", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L29", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L31", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_me", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_me", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_me", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_repprofile", "target": "representation", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_repprofile", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_addiban", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_removeiban", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L178", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_removeiban", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L178", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_removeiban", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L178", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L200", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L213", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L231", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L231", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L231", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L231", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_createclinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L320", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_createclinic", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L320", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_createclinic", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L320", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_createclinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L320", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_doctors", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L399", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctors", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L399", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctors", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L399", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctors", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L399", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_clinics", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L456", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_clinics", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L456", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_clinics", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L456", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_clinics", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L456", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_appointments", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L509", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_appointments", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L509", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_appointments", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L509", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_appointments", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L509", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L587", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L587", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L587", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L618", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L618", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L618", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L649", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L649", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L649", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L700", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L700", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L700", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L700", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller", "target": "controller_representationactioncontroller_representationactioncontroller_financereport", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L771", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_financereport", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L771", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_financereport", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L771", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_financereport", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L771", "weight": 1.0, "context": "return_type"}, {"source": "controller_representationactioncontroller_representationactioncontroller_me", "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L58", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L111", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L150", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L157", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_addiban", "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L175", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_removeiban", "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L196", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L269", "weight": 1.0}, {"source": "controller_representationactioncontroller_representationactioncontroller_createclinic", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L358", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_representationactioncontroller_representationactioncontroller_me", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L53", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_me", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_me", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_repprofile", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L64", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_repprofile", "callee": "getNationalCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L65", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_repprofile", "callee": "isNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L93", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "strlen", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "shahkarMatch", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "setNationalCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "setNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L137", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L139", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "isNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "count", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "getIbans", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L153", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L159", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "ibanMatch", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "getNationalCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "getFullName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L170", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_addiban", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_removeiban", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L188", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_removeiban", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_removeiban", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_removeiban", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L202", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L202", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "callee": "str_starts_with", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L203", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "callee": "ltrim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "strtr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L215", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L215", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "preg_split", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L216", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "count", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L217", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "ctype_digit", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "ctype_digit", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "ctype_digit", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L258", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L258", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L259", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L259", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L260", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L263", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L265", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L266", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L269", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L269", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L272", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setPasswordHash", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L273", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "password_hash", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L273", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "bin2hex", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L273", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "random_bytes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L273", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L274", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L277", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L277", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L278", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L282", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L282", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L283", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L283", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L284", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L284", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L285", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L285", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L286", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L286", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L288", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L288", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L290", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L290", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L291", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L291", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L297", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L297", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L300", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L301", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L303", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L303", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L303", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L306", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L307", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L310", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "dispatchAsync", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L311", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L313", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L317", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L317", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L344", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L344", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L345", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L345", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L346", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L349", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L351", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L352", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L355", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L358", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L358", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L361", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L364", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L365", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L371", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L372", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setTelephone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L372", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L373", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L373", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L376", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "setRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L378", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L378", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L381", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L382", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L385", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "dispatchAsync", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L386", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L388", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L392", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L393", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L394", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_createclinic", "callee": "isActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L395", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L413", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L418", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L419", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L420", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L420", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L426", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L430", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L430", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L433", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L433", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L433", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L437", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L449", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L450", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctors", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L453", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L470", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L472", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L475", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L476", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L477", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L477", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L479", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L483", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L487", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L487", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L491", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L491", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L491", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L491", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L494", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L503", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_clinics", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L506", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L525", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L527", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L530", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L531", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L532", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L532", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L533", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L533", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L534", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L534", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L546", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L554", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L554", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L556", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L557", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L558", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L559", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L559", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L559", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L564", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L564", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L564", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L566", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L566", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L566", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L566", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L569", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L577", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L578", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L579", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_appointments", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L596", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L598", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L601", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L602", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L604", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L605", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L606", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L607", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L609", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L631", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L633", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L636", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L636", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "getRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L637", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L637", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L638", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L641", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L641", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L642", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L644", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L644", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L658", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L660", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L663", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L664", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L665", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L669", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L669", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L669", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L675", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L675", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L675", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L681", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L683", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L684", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L685", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L686", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$income", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L689", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$income", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L690", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$income", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L691", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "$income", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L692", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "getWalletBalance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L693", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "sumByStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L694", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "callee": "sumByStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L695", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L713", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L715", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L718", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L719", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L720", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L722", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L729", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L729", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L729", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L733", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L734", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L738", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L738", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L738", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L744", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L746", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L746", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L746", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "getActiveSubscription", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L751", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L758", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L759", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L760", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "$apptCount", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L761", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L768", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L786", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L788", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L791", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L792", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L793", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L794", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L807", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L811", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L811", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L814", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L814", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L821", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L830", "receiver": null}, {"caller_nid": "controller_representationactioncontroller_representationactioncontroller_financereport", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php", "source_location": "L833", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/50fa1f98dc328a71a1f086deb5197b603219213b9bf888c4dfc2e49aae7edfa5.json b/graphify-out/cache/ast/v0.8.44/50fa1f98dc328a71a1f086deb5197b603219213b9bf888c4dfc2e49aae7edfa5.json new file mode 100644 index 00000000..e213eb9f --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/50fa1f98dc328a71a1f086deb5197b603219213b9bf888c4dfc2e49aae7edfa5.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_representation_md", "label": "representation.md", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L1"}, {"id": "api_representation_representation_agent_api", "label": "Representation (Agent) API", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L1"}, {"id": "api_representation_post_api_v1_representation", "label": "POST `/api/v1/representation`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L9"}, {"id": "api_representation_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L15"}, {"id": "api_representation_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L39"}, {"id": "api_representation_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L56"}, {"id": "api_representation_get_api_v1_representation_uuid", "label": "GET `/api/v1/representation/{uuid}`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L67"}, {"id": "api_representation_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L73"}, {"id": "api_representation_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L78"}, {"id": "api_representation_errors_96", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L96"}, {"id": "api_representation_patch_api_v1_representation_uuid", "label": "PATCH `/api/v1/representation/{uuid}`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L105"}, {"id": "api_representation_request_body_application_json_111", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L111"}, {"id": "api_representation_response_200_124", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L124"}, {"id": "api_representation_errors_127", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L127"}, {"id": "api_representation_delete_api_v1_representation_uuid", "label": "DELETE `/api/v1/representation/{uuid}`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L136"}, {"id": "api_representation_response_200_142", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L142"}, {"id": "api_representation_errors_147", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L147"}, {"id": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "label": "GET `/api/v1/representation/{uuid}/dashboard/monthly`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L156"}, {"id": "api_representation_path_parameters_162", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L162"}, {"id": "api_representation_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L167"}, {"id": "api_representation_response_200_173", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L173"}, {"id": "api_representation_errors_191", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L191"}, {"id": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", "label": "GET `/api/v1/representation/{uuid}/dashboard/yearly`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L200"}, {"id": "api_representation_query_parameters_206", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L206"}, {"id": "api_representation_response_200_211", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L211"}, {"id": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "label": "\u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 (ROLE_REPRESENTATION)", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L232"}, {"id": "api_representation_get_api_v1_representation_me", "label": "GET `/api/v1/representation/me`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L238"}, {"id": "api_representation_response_200_242", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L242"}, {"id": "api_representation_errors_266", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L266"}, {"id": "api_representation_post_api_v1_representation_verify_national_code", "label": "POST `/api/v1/representation/verify-national-code`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L273"}, {"id": "api_representation_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L277"}, {"id": "api_representation_response_200_285", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L285"}, {"id": "api_representation_errors_288", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L288"}, {"id": "api_representation_post_api_v1_representation_iban", "label": "POST `/api/v1/representation/iban`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L298"}, {"id": "api_representation_request_body_302", "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L302"}, {"id": "api_representation_response_200_311", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L311"}, {"id": "api_representation_errors_314", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L314"}, {"id": "api_representation_delete_api_v1_representation_iban_id", "label": "DELETE `/api/v1/representation/iban/{id}`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L326"}, {"id": "api_representation_response_200_330", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L330"}, {"id": "api_representation_post_api_v1_representation_doctor", "label": "POST `/api/v1/representation/doctor`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L335"}, {"id": "api_representation_request_body_339", "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L339"}, {"id": "api_representation_response_201_350", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L350"}, {"id": "api_representation_errors_354", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L354"}, {"id": "api_representation_post_api_v1_representation_clinic", "label": "POST `/api/v1/representation/clinic`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L363"}, {"id": "api_representation_request_body_367", "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L367"}, {"id": "api_representation_response_200_377", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L377"}, {"id": "api_representation_errors_381", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L381"}, {"id": "api_representation_get_api_v1_representation_appointments", "label": "GET `/api/v1/representation/appointments`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L389"}, {"id": "api_representation_query_parameters_393", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L393"}, {"id": "api_representation_response_200_402", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L402"}, {"id": "api_representation_errors_425", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L425"}, {"id": "api_representation_get_api_v1_representation_doctors", "label": "GET `/api/v1/representation/doctors`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L432"}, {"id": "api_representation_query_parameters_438", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L438"}, {"id": "api_representation_response_200_445", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L445"}, {"id": "api_representation_errors_460", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L460"}, {"id": "api_representation_get_api_v1_representation_doctors_stats", "label": "GET `/api/v1/representation/doctors/stats`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L467"}, {"id": "api_representation_response_200_473", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L473"}, {"id": "api_representation_errors_480", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L480"}, {"id": "api_representation_post_api_v1_representation_doctors_uuid_status", "label": "POST `/api/v1/representation/doctors/{uuid}/status`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L487"}, {"id": "api_representation_path_parameters_493", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L493"}, {"id": "api_representation_response_200_498", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L498"}, {"id": "api_representation_errors_502", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L502"}, {"id": "api_representation_get_api_v1_representation_clinics", "label": "GET `/api/v1/representation/clinics`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L509"}, {"id": "api_representation_query_parameters_515", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L515"}, {"id": "api_representation_response_200_522", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L522"}, {"id": "api_representation_errors_536", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L536"}, {"id": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f\u060c \u0639\u0645\u0644\u06a9\u0631\u062f \u0648 \u0645\u0627\u0644\u06cc\u0650 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L543"}, {"id": "api_representation_get_api_v1_representation_dashboard_summary", "label": "GET `/api/v1/representation/dashboard/summary`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L547"}, {"id": "api_representation_errors_566", "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L566"}, {"id": "api_representation_get_api_v1_representation_doctors_performance", "label": "GET `/api/v1/representation/doctors/performance`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L571"}, {"id": "api_representation_get_api_v1_representation_finance_report", "label": "GET `/api/v1/representation/finance/report`", "file_type": "document", "source_file": "docs/api/representation.md", "source_location": "L592"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_representation_md", "target": "api_representation_representation_agent_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L1", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_post_api_v1_representation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L9", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation", "target": "api_representation_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L15", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation", "target": "api_representation_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L39", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation", "target": "api_representation_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L56", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_get_api_v1_representation_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L67", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid", "target": "api_representation_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L73", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid", "target": "api_representation_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L78", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid", "target": "api_representation_errors_96", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L96", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_patch_api_v1_representation_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L105", "weight": 1.0}, {"source": "api_representation_patch_api_v1_representation_uuid", "target": "api_representation_request_body_application_json_111", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L111", "weight": 1.0}, {"source": "api_representation_patch_api_v1_representation_uuid", "target": "api_representation_response_200_124", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L124", "weight": 1.0}, {"source": "api_representation_patch_api_v1_representation_uuid", "target": "api_representation_errors_127", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L127", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_delete_api_v1_representation_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L136", "weight": 1.0}, {"source": "api_representation_delete_api_v1_representation_uuid", "target": "api_representation_response_200_142", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L142", "weight": 1.0}, {"source": "api_representation_delete_api_v1_representation_uuid", "target": "api_representation_errors_147", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L147", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L156", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "target": "api_representation_path_parameters_162", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L162", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "target": "api_representation_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L167", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "target": "api_representation_response_200_173", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L173", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", "target": "api_representation_errors_191", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L191", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L200", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", "target": "api_representation_query_parameters_206", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L206", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", "target": "api_representation_response_200_211", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L211", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L232", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_get_api_v1_representation_me", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L238", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_me", "target": "api_representation_response_200_242", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L242", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_me", "target": "api_representation_errors_266", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L266", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_post_api_v1_representation_verify_national_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L273", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_verify_national_code", "target": "api_representation_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L277", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_verify_national_code", "target": "api_representation_response_200_285", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L285", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_verify_national_code", "target": "api_representation_errors_288", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L288", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_post_api_v1_representation_iban", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L298", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_iban", "target": "api_representation_request_body_302", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L302", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_iban", "target": "api_representation_response_200_311", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L311", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_iban", "target": "api_representation_errors_314", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L314", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_delete_api_v1_representation_iban_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L326", "weight": 1.0}, {"source": "api_representation_delete_api_v1_representation_iban_id", "target": "api_representation_response_200_330", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L330", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_post_api_v1_representation_doctor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L335", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctor", "target": "api_representation_request_body_339", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L339", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctor", "target": "api_representation_response_201_350", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L350", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctor", "target": "api_representation_errors_354", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L354", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_post_api_v1_representation_clinic", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L363", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_clinic", "target": "api_representation_request_body_367", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L367", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_clinic", "target": "api_representation_response_200_377", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L377", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_clinic", "target": "api_representation_errors_381", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L381", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_get_api_v1_representation_appointments", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L389", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_appointments", "target": "api_representation_query_parameters_393", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L393", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_appointments", "target": "api_representation_response_200_402", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L402", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_appointments", "target": "api_representation_errors_425", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L425", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_get_api_v1_representation_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L432", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_doctors", "target": "api_representation_query_parameters_438", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L438", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_doctors", "target": "api_representation_response_200_445", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L445", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_doctors", "target": "api_representation_errors_460", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L460", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_get_api_v1_representation_doctors_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L467", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_doctors_stats", "target": "api_representation_response_200_473", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L473", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_doctors_stats", "target": "api_representation_errors_480", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L480", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_post_api_v1_representation_doctors_uuid_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L487", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctors_uuid_status", "target": "api_representation_path_parameters_493", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L493", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctors_uuid_status", "target": "api_representation_response_200_498", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L498", "weight": 1.0}, {"source": "api_representation_post_api_v1_representation_doctors_uuid_status", "target": "api_representation_errors_502", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L502", "weight": 1.0}, {"source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "target": "api_representation_get_api_v1_representation_clinics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L509", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_clinics", "target": "api_representation_query_parameters_515", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L515", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_clinics", "target": "api_representation_response_200_522", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L522", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_clinics", "target": "api_representation_errors_536", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L536", "weight": 1.0}, {"source": "api_representation_representation_agent_api", "target": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L543", "weight": 1.0}, {"source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "target": "api_representation_get_api_v1_representation_dashboard_summary", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L547", "weight": 1.0}, {"source": "api_representation_get_api_v1_representation_dashboard_summary", "target": "api_representation_errors_566", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L566", "weight": 1.0}, {"source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "target": "api_representation_get_api_v1_representation_doctors_performance", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L571", "weight": 1.0}, {"source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "target": "api_representation_get_api_v1_representation_finance_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", "source_location": "L592", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/aa6b3e431ca5e81396cb1a7791e517143950c4ccd24fc5c7e663d9fe5510b031.json b/graphify-out/cache/ast/v0.8.44/aa6b3e431ca5e81396cb1a7791e517143950c4ccd24fc5c7e663d9fe5510b031.json new file mode 100644 index 00000000..da4a2569 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/aa6b3e431ca5e81396cb1a7791e517143950c4ccd24fc5c7e663d9fe5510b031.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "label": "ApiIrService.php", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L1"}, {"id": "service_apiirservice_apiirservice", "label": "ApiIrService", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L22"}, {"id": "service_apiirservice_apiirservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L24"}, {"id": "service_apiirservice_apiirservice_isconfigured", "label": ".isConfigured()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L31"}, {"id": "service_apiirservice_apiirservice_shahkarmatch", "label": ".shahkarMatch()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L39"}, {"id": "service_apiirservice_apiirservice_ibanmatch", "label": ".ibanMatch()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L58"}, {"id": "service_apiirservice_apiirservice_post", "label": ".post()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L77"}, {"id": "service_apiirservice_apiirservice_extractmatched", "label": ".extractMatched()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L113"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "appexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "httpclientinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "service_apiirservice_apiirservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L22", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L24", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_isconfigured", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L31", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_shahkarmatch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L39", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_ibanmatch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L58", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_post", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L77", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L113", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_shahkarmatch", "target": "service_apiirservice_apiirservice_post", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L42", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_shahkarmatch", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L47", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_ibanmatch", "target": "service_apiirservice_apiirservice_post", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L60", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_ibanmatch", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L67", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_post", "target": "service_apiirservice_apiirservice_isconfigured", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L79", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_apiirservice_apiirservice_post", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L84", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "rtrim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L84", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getStatusCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L90", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L95", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L99", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L99", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_extractmatched", "callee": "filter_var", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L119", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index f23272bb..cc31c399 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3016,"mtime_ns":1781551622407209539,"hash":"37f5d9c98cdbda93b4c21040a07ec066d89a028319c6986eeb4d17b3a9b1d21e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105209,"mtime_ns":1781551622410141752,"hash":"9032724d143d4d48a22b267a9a2284a3495771d3ebddff7a830dda39944cf269"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":3948,"mtime_ns":1781087951565786004,"hash":"f3b08d44a36df3d2559a99eb260fe3098b0bd976990b4af9b61ac717c8259a55"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":1765,"mtime_ns":1781164713855049729,"hash":"226896294eb6cd3fe01927aebd15dbe6fa146b6f4ff12d37efbcfa4d6510b104"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2082,"mtime_ns":1781817583709166929,"hash":"37e171af8a4ddbd77414b514ae274c8637be7ce35374b117a8d71bb900c55f63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":97143,"mtime_ns":1782399744621767076,"hash":"bb844622f304f018f01e76a11fe2c397aaa8acab3e581bea263178e39a829296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":16564,"mtime_ns":1782217861991372164,"hash":"66670716bbc31a4ca8246f78922ecf16791bbd0b0439a07543dc3d567d3fd7c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":13525,"mtime_ns":1782218056479959574,"hash":"77c1db551ebf67357b0de112aa4d02f7c6ccdaefe13e985cf8f51bf6cae81db5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":8427,"mtime_ns":1782304250442324548,"hash":"ae3cb92d0156c058d3a3a89fb4262e0ff6dd94dbd3c23cbe240bfc39dc3b5978"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2811,"mtime_ns":1781012243057893395,"hash":"ef4441f12cd65447fd2670ba354162f407ebb7666273032e70b0379e174a9230"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2860,"mtime_ns":1781012254884035707,"hash":"6a98ea0a290f521efa4f0c71a0b364a38b7832527abc5d085978792079f84460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3412,"mtime_ns":1781535414060015915,"hash":"a879914fe0a8a222978798fc1149eb3df3ddb76b1fc8c5ba3cec908364fd9b41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":5625,"mtime_ns":1781557035804455490,"hash":"28d707a2015952fbc60bde61faecf5e2c66e74a3eac3bb60554019e17b9a4988"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1572,"mtime_ns":1781591920506588557,"hash":"e30e59a4478bc84ed3dc0ff75d6baa6d5c2643a2d41a7378323cc59a4827ee52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":35282,"mtime_ns":1781946698087775430,"hash":"c61576a8ab7a9a295c5aa85cae95b0ac640b5e75245a20f47f4c618db17ec84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7856,"mtime_ns":1781888594687795510,"hash":"bc06c0a91193df5d7dd41ff8b0a80a78acf0eaeb8ae84f0fec60eaf7764e9749"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4804,"mtime_ns":1782399514396967463,"hash":"14203a81aefe3239cd28bd31b32c5310bf184f3fd7dfee96ee23bf706b4d6634"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1054,"mtime_ns":1781164690884716630,"hash":"df89a365b81079d570e1b52eede227f71654544f54c0d7f8758ee17d7d5d2c1c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":11655,"mtime_ns":1782269001921059181,"hash":"7278155d63b50f18c6cb87d3e14bf51b010f598f031bcf11b16575454139aff1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":4863,"mtime_ns":1782268933405805931,"hash":"eb874915d9fd1950fea47efb46e2278600ab36a30857b12cccda86ebc2b5b807"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5482,"mtime_ns":1781798139008892404,"hash":"9e8afc6509f72b099ac9798e2ddc4024c38638aade527a577a049cc47f370871"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1730,"mtime_ns":1781522583736094326,"hash":"005f400c7679ef8d1bff22dc231aea46c04d0e74a10d5a690f294ac0444d9102"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12203,"mtime_ns":1782035155115966108,"hash":"0c7d07bdfbdf7b88649f1c4bd6391862a21da9c45885e0046950258fb82ba64e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10147,"mtime_ns":1781522583736608494,"hash":"f268b616e20c3d7db7a7b5f278d536b309a02508629beddf53db75f7ec8e5868"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5412,"mtime_ns":1781116470022361755,"hash":"ad547763db200d990a94657579a2324acf8fb73f963dcf895d7ae2c51796458b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":14162,"mtime_ns":1782263955109258965,"hash":"b35bfb44623a60a30c39b75148392c7ebf79d810af934c4074b5f59355c4bee5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3369,"mtime_ns":1782319753499631658,"hash":"91d6de5e3c6f14955c0b99c55dafeab4daf8838256eb3d9954fe577f6051c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":932,"mtime_ns":1781166837315686345,"hash":"c3e9e3acdd4c5db5acc8cfb46dca6dfe5f97d0df348dd1b2778f13315672bff7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1734,"mtime_ns":1782293837190777849,"hash":"4565f866aecc63bbfcfb345cc755b1e4179f94848ff65d0a0b687a62a4a9c1ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2533,"mtime_ns":1782319853828508658,"hash":"50306f63113ee6dfa84443fe08d91f9fb9b17b7b9f86a85539bcd3a05215c51a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18227,"mtime_ns":1781522583733722442,"hash":"d67fce94d5e7ecfa0222a05f525586c96c9c280bcbee7605865b114594201bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37244,"mtime_ns":1782031691600699121,"hash":"76ae30818083f9ec05fba30caf34575683ee1530ae6c1d51eceb52c45d26f5a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16703,"mtime_ns":1782108912380352420,"hash":"10363dfb996d06f7ed05ac77eefcb89ea78899e17a4314d9738ed09d813bc9da"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5370,"mtime_ns":1781362162510670131,"hash":"d9d69f7de5e63ec00fc8dbcbd29a6e98f7bae3ff9b86918604b9a69d74bd7730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7467,"mtime_ns":1782051919467420580,"hash":"ac4b960f6bd0a479da328829cb8d77b002bb0ca61705fc3f1a51ec1eaadb887e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5406,"mtime_ns":1781522583732540897,"hash":"953781115f6180a8b4d33de1d600d1a64d9dbf949a93069a82f1d8b28a14a5dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":24674,"mtime_ns":1782259982521538146,"hash":"a51d876923d810dcdfc8f394ca5378e8c3bf6dbed59fea36d935e2e8d259f3ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1939,"mtime_ns":1781085722790958881,"hash":"9545ed44de7f657e3992994b4b28487666a3a5a48c4814dfd63f28d8b60d4e6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":201,"mtime_ns":1781009656089147925,"hash":"d7962947c0af25a4a8e1d42cd09ba3c27949a0b4754374bffed35f8ce45bd3ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10195,"mtime_ns":1781522583734100069,"hash":"64770748d202a36f7ebd57f5fe725201462f80835839fc0dee471cadf8e663bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":5855,"mtime_ns":1781089230145855904,"hash":"a9c471a92b627484e74df8e11ebc9f6db21a05c249df2f67eb74a39477204e4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15739,"mtime_ns":1782289561485540221,"hash":"b8a265a6c3c917fe6acb16f5ae7636f48712894d01941ed0cb32ee5e2ab11c55"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":6962,"mtime_ns":1782263031401704149,"hash":"0135a5351c9ceb6902c56372689d61b5bbbc5e07203594f05886956111b9feea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":30460,"mtime_ns":1782384726880419834,"hash":"5f75447f2dc66a5bad31c3bf828779e63eaf3209414ff1131ee5af2f43c4037c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5530,"mtime_ns":1781591920508134433,"hash":"8862f95bfa255ce5ca115a5269cff80c15c9f82c03e7309e99cbc93a723cf0b9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":5519,"mtime_ns":1781591920508373683,"hash":"e753a9a0abebfe1cff3aeb2417413c3d9de62922d97e5ab951572f212ef36ea6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1184,"mtime_ns":1781591920508529183,"hash":"bbf92e147a66e1484c0b442da13f582f7eed6a756209d4af5f54fc839bec0c8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":429,"mtime_ns":1781012928742348313,"hash":"0ea6fa1641009afe5a0f6ca33dd6afc4e224978bd7cbfd4be8865a6ac52c9c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3334,"mtime_ns":1781591920508822724,"hash":"365b25cc9de0d769372b17c3cdf9d8be1ed39c2c83b8bb939b54ec43f15c116b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":2108,"mtime_ns":1781591920508979683,"hash":"5ab124be427f922bb5420411368a7037f2e53e85e1a2aa905571417c8d7fa120"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":21831,"mtime_ns":1781557035804682323,"hash":"7fe79edb80c6f2983e1e15ae7cfe4806f39ef9d873fc5cd3b5ec640bdc3ff174"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4793,"mtime_ns":1781557035804958740,"hash":"a049f20f066b33e8d59bdeba9ab40a2b81c2142559c259c94032ed8ad4041561"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2071,"mtime_ns":1781557035805402323,"hash":"2729943529cf37e386975819fc3476460e54b48445d26197f8d283d1b30e39b3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4277,"mtime_ns":1781557035805610157,"hash":"95f3f3997293fbee15f3751d7a4e1ebb40297c5fcb436d5d8c92a70775d5a56a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":1528,"mtime_ns":1781557035805768282,"hash":"dcd8ef006b13f2530706e0b139dc0e6a32aad724412262754b1b972c10870949"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":39470,"mtime_ns":1782399975070042568,"hash":"63eb539edde847ab1b1198d90c970b3276e7c6a3e0c19eae22f2091473799b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":20731,"mtime_ns":1782304470278617569,"hash":"066ba489ef07286bb40ccf363ac16799c9b54a7a36799184805ec5034895e702"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5307,"mtime_ns":1782399553635745709,"hash":"30328580047b9f68944c7cb1942caf3f7fab3ade452fe23aa0a7f30b8aa53885"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":882,"mtime_ns":1781551622412449131,"hash":"2ec793b26f528520f7f80ce26684ea383b09eb5081e94900a469447ee3091d8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":10070,"mtime_ns":1781522583736830703,"hash":"581abaa41c138ece2fb0796f9ed8e43158f848aad1efa337c5076f8a290f6b72"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5075,"mtime_ns":1781516938579702208,"hash":"6faf7a660ea3e8aea4cc375c63917e7fe5fb48ba8913a91ef5c1f31c3fc22325"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":4806,"mtime_ns":1781520468691008589,"hash":"d5fec5e2b12c6eb9915d8b122a930d096bf6722789a5a41d4cc5dc3b128ca010"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":22060,"mtime_ns":1782400253777937913,"hash":"68eac18efc778814ed911eebd1747c182e2e1b81f7f333bc3b3c6202bc8bf69c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5257,"mtime_ns":1782293088172647001,"hash":"10f3f7cd7ac8e13b8e514e944848a27f090cffeca31cd97c6006a7e04c7d4a5f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4154,"mtime_ns":1782400228331538148,"hash":"280ab9b877ed64d54dffc44a2ad84c717d69238390f63ff1ae02ee0b318322f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":2914,"mtime_ns":1781013356097980499,"hash":"d6d2c81b96ba589878aa7dcd7e4647a2c476e03d13ffaf371e290494ace7f8d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2109,"mtime_ns":1782304489397241956,"hash":"33d663e4c7895b0e56a14fc949a5714eefb2b41d8eda8f9b7fe772f2d9e1726f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":838,"mtime_ns":1781013389046057105,"hash":"d9ca9cbe61caaa9191fd568752f35554da73457f358950d30cbd4bd81837c2be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":7293,"mtime_ns":1782399365553380571,"hash":"10d827757949ef051e2c3b4f2bd6e649930cfa88dde3d57d09516233d819d239"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5221,"mtime_ns":1781115497217339993,"hash":"2ff242b1af4561510027d22977acd30bae76642ca609f13b04897d43ce3155ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1392,"mtime_ns":1781946833720617897,"hash":"786853e56679cc6dcd7b6a49576c8cc2fd0a5430153fbfdd6c27944d9a6e215c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4147,"mtime_ns":1782399401600047485,"hash":"6ab0c229936a8e1207910daaab9e75b7f84ff55abfd777647981fd572063114e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11962,"mtime_ns":1782110309289351872,"hash":"6a1abec43951233b9e88021712f1159d043eb14f47473e5bb6fd41105a8267e5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":2902,"mtime_ns":1782367069109572376,"hash":"789a61086b9d08008ab9941e85052241c371b423e6390f882135e8d348d6f1ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":3758,"mtime_ns":1781888611705102206,"hash":"80428170d5a793e364d9a4f83b1112395c16d15907b473dea3a945502babc8ed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":3992,"mtime_ns":1781889423198586606,"hash":"b77ed0b483016ff3ded0ebab6b8dd81d648b92344b8e392f8aed1c58838c65af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2219,"mtime_ns":1781516938580846252,"hash":"6045b6529b7dd4a11a12af2606f810901a5aa80bd8e4492c4a9ab2ce8cf04751"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":1553,"mtime_ns":1781013629869744062,"hash":"6e72cbb63efda0cbcae7f753ca644de3b912069da34716ce645d2e4a768a8cc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6151,"mtime_ns":1781636247076758267,"hash":"e6cc213607cc6d3d56450b73f04c696e4f2ad5adfc6eb3ebbf85395867f06552"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4013,"mtime_ns":1781516938582327922,"hash":"15ca7be1a752a08fac682eb04da250b148d60b75a90dd16d3783f46c38ca3edf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3784,"mtime_ns":1781516938582448756,"hash":"c5a32b94ec287938258195a65277732f0ee290bcdf577af40009322383816c65"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4028,"mtime_ns":1781522583736261243,"hash":"59af02e5966b18ea820af39e59750ddaf6cb2a569369fabb64b15e50ec8aef27"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9445,"mtime_ns":1782270207671264237,"hash":"37710f20c842a049c260e96a284970b10be5c0da0f7d2b50acb9bb382ffceb01"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":405,"mtime_ns":1781030340137303591,"hash":"6eabf820d178917a30ec700c7ad2059e65c24575f6feecfb17d3bdf7540f1bdd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":27702,"mtime_ns":1782395094787357438,"hash":"f6139dfe2b644b50db59b29e005b1b859cca736e20a20b3dfc6056fcfc2138eb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16368,"mtime_ns":1782218303036194938,"hash":"95c7d60beb5d9de0b270b262a387b465081235ed6649be2974bae8bd6caef844"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":15881,"mtime_ns":1782304885689747559,"hash":"72a58c77c54c77aae68b8774c183fc59acd2a09de32ba29964f6aa5cb9dd86ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18168,"mtime_ns":1781947165287219466,"hash":"b5a488fc83e88fe15cd0e164c025797e45a73e948420f14fa5b4999856aefea1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":9404,"mtime_ns":1782269224532533125,"hash":"9110e3e800c294b51371061a3df7837e5a6477600b26e3830fcfcbcaea9ce9c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":5922,"mtime_ns":1782264096615743546,"hash":"aeaabdf32c3e05f3de484ab101f228f1d2f296b38d176e35c75f294cf3275333"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3069,"mtime_ns":1781158861723407745,"hash":"6ca39eda6028233698ef3f32989d63f5a3d010027c7cb6858aa123ffa323b881"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13302,"mtime_ns":1782108983632585455,"hash":"6cc45c1dca3266b080b96f3e245eee74bf18a419810d0559ca156315b3512638"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14001,"mtime_ns":1782268560926360821,"hash":"3ae36753b8f22acab68b06f07a25c9bdcd112bc92ce1a3413ccec51bd8df6036"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5139,"mtime_ns":1781158896607181549,"hash":"56801b2d0129952d83d187d421b1814b503b858a5823cc4aa2b05cf8801daae0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":10548,"mtime_ns":1782384937498335845,"hash":"8012d0040cee9c312efca9f314dafbff0fea57209d2c1a1d8ba4847bc0ba9264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":10744,"mtime_ns":1781557035803701281,"hash":"82a7e749dc4a78f90d588b6460fb1c6b25594910d4c21fbe0f536e29d5a4d5d4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":20462,"mtime_ns":1782400506673709738,"hash":"16882796edddc191d1bfb8a90124036bc729f1c02152f464468a2042199ee911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":10497,"mtime_ns":1781520442059899034,"hash":"06548919f6a826850f8e2b392875bb773a3dd1bfe0c670321e68b8fff30c132b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9305,"mtime_ns":1782400448447079773,"hash":"97baf644fcae088dfa8c41ccf4a6e519c05e8d8308bd22db0a68e9e39522b76d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":13363,"mtime_ns":1782367200506345625,"hash":"ad782caaf9d874097e138f7407bbe018dfb48d8860d052eafcedfafd04a9b85b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4396,"mtime_ns":1781636247076221267,"hash":"7933e87593eed0c37a4f4df9548672598d1c0268630c17f49e8db191a3c84f48"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":2572,"mtime_ns":1781158875288396478,"hash":"98bf6bcf59d1f2beaeb193060cf9dede5187b27dc8223eb075f274ff042d5e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"}} \ No newline at end of file +{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3016,"mtime_ns":1781551622407209539,"hash":"37f5d9c98cdbda93b4c21040a07ec066d89a028319c6986eeb4d17b3a9b1d21e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105209,"mtime_ns":1781551622410141752,"hash":"9032724d143d4d48a22b267a9a2284a3495771d3ebddff7a830dda39944cf269"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":3948,"mtime_ns":1781087951565786004,"hash":"f3b08d44a36df3d2559a99eb260fe3098b0bd976990b4af9b61ac717c8259a55"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":1765,"mtime_ns":1781164713855049729,"hash":"226896294eb6cd3fe01927aebd15dbe6fa146b6f4ff12d37efbcfa4d6510b104"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2082,"mtime_ns":1781817583709166929,"hash":"37e171af8a4ddbd77414b514ae274c8637be7ce35374b117a8d71bb900c55f63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":97143,"mtime_ns":1782399744621767076,"hash":"bb844622f304f018f01e76a11fe2c397aaa8acab3e581bea263178e39a829296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":16564,"mtime_ns":1782217861991372164,"hash":"66670716bbc31a4ca8246f78922ecf16791bbd0b0439a07543dc3d567d3fd7c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":13525,"mtime_ns":1782218056479959574,"hash":"77c1db551ebf67357b0de112aa4d02f7c6ccdaefe13e985cf8f51bf6cae81db5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":8427,"mtime_ns":1782304250442324548,"hash":"ae3cb92d0156c058d3a3a89fb4262e0ff6dd94dbd3c23cbe240bfc39dc3b5978"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2811,"mtime_ns":1781012243057893395,"hash":"ef4441f12cd65447fd2670ba354162f407ebb7666273032e70b0379e174a9230"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2860,"mtime_ns":1781012254884035707,"hash":"6a98ea0a290f521efa4f0c71a0b364a38b7832527abc5d085978792079f84460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3412,"mtime_ns":1781535414060015915,"hash":"a879914fe0a8a222978798fc1149eb3df3ddb76b1fc8c5ba3cec908364fd9b41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":5625,"mtime_ns":1781557035804455490,"hash":"28d707a2015952fbc60bde61faecf5e2c66e74a3eac3bb60554019e17b9a4988"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1572,"mtime_ns":1781591920506588557,"hash":"e30e59a4478bc84ed3dc0ff75d6baa6d5c2643a2d41a7378323cc59a4827ee52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":35282,"mtime_ns":1781946698087775430,"hash":"c61576a8ab7a9a295c5aa85cae95b0ac640b5e75245a20f47f4c618db17ec84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7856,"mtime_ns":1781888594687795510,"hash":"bc06c0a91193df5d7dd41ff8b0a80a78acf0eaeb8ae84f0fec60eaf7764e9749"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4804,"mtime_ns":1782399514396967463,"hash":"14203a81aefe3239cd28bd31b32c5310bf184f3fd7dfee96ee23bf706b4d6634"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1054,"mtime_ns":1781164690884716630,"hash":"df89a365b81079d570e1b52eede227f71654544f54c0d7f8758ee17d7d5d2c1c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":11655,"mtime_ns":1782269001921059181,"hash":"7278155d63b50f18c6cb87d3e14bf51b010f598f031bcf11b16575454139aff1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":4863,"mtime_ns":1782268933405805931,"hash":"eb874915d9fd1950fea47efb46e2278600ab36a30857b12cccda86ebc2b5b807"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5482,"mtime_ns":1781798139008892404,"hash":"9e8afc6509f72b099ac9798e2ddc4024c38638aade527a577a049cc47f370871"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1730,"mtime_ns":1781522583736094326,"hash":"005f400c7679ef8d1bff22dc231aea46c04d0e74a10d5a690f294ac0444d9102"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12203,"mtime_ns":1782035155115966108,"hash":"0c7d07bdfbdf7b88649f1c4bd6391862a21da9c45885e0046950258fb82ba64e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10147,"mtime_ns":1781522583736608494,"hash":"f268b616e20c3d7db7a7b5f278d536b309a02508629beddf53db75f7ec8e5868"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5412,"mtime_ns":1781116470022361755,"hash":"ad547763db200d990a94657579a2324acf8fb73f963dcf895d7ae2c51796458b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":14162,"mtime_ns":1782263955109258965,"hash":"b35bfb44623a60a30c39b75148392c7ebf79d810af934c4074b5f59355c4bee5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3369,"mtime_ns":1782319753499631658,"hash":"91d6de5e3c6f14955c0b99c55dafeab4daf8838256eb3d9954fe577f6051c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":932,"mtime_ns":1781166837315686345,"hash":"c3e9e3acdd4c5db5acc8cfb46dca6dfe5f97d0df348dd1b2778f13315672bff7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1734,"mtime_ns":1782293837190777849,"hash":"4565f866aecc63bbfcfb345cc755b1e4179f94848ff65d0a0b687a62a4a9c1ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2533,"mtime_ns":1782319853828508658,"hash":"50306f63113ee6dfa84443fe08d91f9fb9b17b7b9f86a85539bcd3a05215c51a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18227,"mtime_ns":1781522583733722442,"hash":"d67fce94d5e7ecfa0222a05f525586c96c9c280bcbee7605865b114594201bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37244,"mtime_ns":1782031691600699121,"hash":"76ae30818083f9ec05fba30caf34575683ee1530ae6c1d51eceb52c45d26f5a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16703,"mtime_ns":1782108912380352420,"hash":"10363dfb996d06f7ed05ac77eefcb89ea78899e17a4314d9738ed09d813bc9da"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5370,"mtime_ns":1781362162510670131,"hash":"d9d69f7de5e63ec00fc8dbcbd29a6e98f7bae3ff9b86918604b9a69d74bd7730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7467,"mtime_ns":1782051919467420580,"hash":"ac4b960f6bd0a479da328829cb8d77b002bb0ca61705fc3f1a51ec1eaadb887e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5406,"mtime_ns":1781522583732540897,"hash":"953781115f6180a8b4d33de1d600d1a64d9dbf949a93069a82f1d8b28a14a5dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":24674,"mtime_ns":1782259982521538146,"hash":"a51d876923d810dcdfc8f394ca5378e8c3bf6dbed59fea36d935e2e8d259f3ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1939,"mtime_ns":1781085722790958881,"hash":"9545ed44de7f657e3992994b4b28487666a3a5a48c4814dfd63f28d8b60d4e6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":201,"mtime_ns":1781009656089147925,"hash":"d7962947c0af25a4a8e1d42cd09ba3c27949a0b4754374bffed35f8ce45bd3ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10195,"mtime_ns":1781522583734100069,"hash":"64770748d202a36f7ebd57f5fe725201462f80835839fc0dee471cadf8e663bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":5855,"mtime_ns":1781089230145855904,"hash":"a9c471a92b627484e74df8e11ebc9f6db21a05c249df2f67eb74a39477204e4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15739,"mtime_ns":1782289561485540221,"hash":"b8a265a6c3c917fe6acb16f5ae7636f48712894d01941ed0cb32ee5e2ab11c55"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":6962,"mtime_ns":1782263031401704149,"hash":"0135a5351c9ceb6902c56372689d61b5bbbc5e07203594f05886956111b9feea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":30460,"mtime_ns":1782384726880419834,"hash":"5f75447f2dc66a5bad31c3bf828779e63eaf3209414ff1131ee5af2f43c4037c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5530,"mtime_ns":1781591920508134433,"hash":"8862f95bfa255ce5ca115a5269cff80c15c9f82c03e7309e99cbc93a723cf0b9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":5519,"mtime_ns":1781591920508373683,"hash":"e753a9a0abebfe1cff3aeb2417413c3d9de62922d97e5ab951572f212ef36ea6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1184,"mtime_ns":1781591920508529183,"hash":"bbf92e147a66e1484c0b442da13f582f7eed6a756209d4af5f54fc839bec0c8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":429,"mtime_ns":1781012928742348313,"hash":"0ea6fa1641009afe5a0f6ca33dd6afc4e224978bd7cbfd4be8865a6ac52c9c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3334,"mtime_ns":1781591920508822724,"hash":"365b25cc9de0d769372b17c3cdf9d8be1ed39c2c83b8bb939b54ec43f15c116b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":2108,"mtime_ns":1781591920508979683,"hash":"5ab124be427f922bb5420411368a7037f2e53e85e1a2aa905571417c8d7fa120"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":21831,"mtime_ns":1781557035804682323,"hash":"7fe79edb80c6f2983e1e15ae7cfe4806f39ef9d873fc5cd3b5ec640bdc3ff174"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4793,"mtime_ns":1781557035804958740,"hash":"a049f20f066b33e8d59bdeba9ab40a2b81c2142559c259c94032ed8ad4041561"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2071,"mtime_ns":1781557035805402323,"hash":"2729943529cf37e386975819fc3476460e54b48445d26197f8d283d1b30e39b3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4277,"mtime_ns":1781557035805610157,"hash":"95f3f3997293fbee15f3751d7a4e1ebb40297c5fcb436d5d8c92a70775d5a56a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":1528,"mtime_ns":1781557035805768282,"hash":"dcd8ef006b13f2530706e0b139dc0e6a32aad724412262754b1b972c10870949"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":41165,"mtime_ns":1782403671232173051,"hash":"44709f6d2216f40e2a0c3c37dd581e287ea63ee89223b94d61c7e605a0870462"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":20731,"mtime_ns":1782304470278617569,"hash":"066ba489ef07286bb40ccf363ac16799c9b54a7a36799184805ec5034895e702"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5307,"mtime_ns":1782399553635745709,"hash":"30328580047b9f68944c7cb1942caf3f7fab3ade452fe23aa0a7f30b8aa53885"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":882,"mtime_ns":1781551622412449131,"hash":"2ec793b26f528520f7f80ce26684ea383b09eb5081e94900a469447ee3091d8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":10070,"mtime_ns":1781522583736830703,"hash":"581abaa41c138ece2fb0796f9ed8e43158f848aad1efa337c5076f8a290f6b72"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5075,"mtime_ns":1781516938579702208,"hash":"6faf7a660ea3e8aea4cc375c63917e7fe5fb48ba8913a91ef5c1f31c3fc22325"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":4806,"mtime_ns":1781520468691008589,"hash":"d5fec5e2b12c6eb9915d8b122a930d096bf6722789a5a41d4cc5dc3b128ca010"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":22060,"mtime_ns":1782400253777937913,"hash":"68eac18efc778814ed911eebd1747c182e2e1b81f7f333bc3b3c6202bc8bf69c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5257,"mtime_ns":1782293088172647001,"hash":"10f3f7cd7ac8e13b8e514e944848a27f090cffeca31cd97c6006a7e04c7d4a5f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4154,"mtime_ns":1782400228331538148,"hash":"280ab9b877ed64d54dffc44a2ad84c717d69238390f63ff1ae02ee0b318322f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":2914,"mtime_ns":1781013356097980499,"hash":"d6d2c81b96ba589878aa7dcd7e4647a2c476e03d13ffaf371e290494ace7f8d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2109,"mtime_ns":1782304489397241956,"hash":"33d663e4c7895b0e56a14fc949a5714eefb2b41d8eda8f9b7fe772f2d9e1726f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":838,"mtime_ns":1781013389046057105,"hash":"d9ca9cbe61caaa9191fd568752f35554da73457f358950d30cbd4bd81837c2be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":7293,"mtime_ns":1782399365553380571,"hash":"10d827757949ef051e2c3b4f2bd6e649930cfa88dde3d57d09516233d819d239"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5221,"mtime_ns":1781115497217339993,"hash":"2ff242b1af4561510027d22977acd30bae76642ca609f13b04897d43ce3155ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1392,"mtime_ns":1781946833720617897,"hash":"786853e56679cc6dcd7b6a49576c8cc2fd0a5430153fbfdd6c27944d9a6e215c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4539,"mtime_ns":1782403597569591672,"hash":"aa6b3e431ca5e81396cb1a7791e517143950c4ccd24fc5c7e663d9fe5510b031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11962,"mtime_ns":1782110309289351872,"hash":"6a1abec43951233b9e88021712f1159d043eb14f47473e5bb6fd41105a8267e5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":2902,"mtime_ns":1782367069109572376,"hash":"789a61086b9d08008ab9941e85052241c371b423e6390f882135e8d348d6f1ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":3758,"mtime_ns":1781888611705102206,"hash":"80428170d5a793e364d9a4f83b1112395c16d15907b473dea3a945502babc8ed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":3992,"mtime_ns":1781889423198586606,"hash":"b77ed0b483016ff3ded0ebab6b8dd81d648b92344b8e392f8aed1c58838c65af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2219,"mtime_ns":1781516938580846252,"hash":"6045b6529b7dd4a11a12af2606f810901a5aa80bd8e4492c4a9ab2ce8cf04751"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":1553,"mtime_ns":1781013629869744062,"hash":"6e72cbb63efda0cbcae7f753ca644de3b912069da34716ce645d2e4a768a8cc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6151,"mtime_ns":1781636247076758267,"hash":"e6cc213607cc6d3d56450b73f04c696e4f2ad5adfc6eb3ebbf85395867f06552"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4013,"mtime_ns":1781516938582327922,"hash":"15ca7be1a752a08fac682eb04da250b148d60b75a90dd16d3783f46c38ca3edf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3784,"mtime_ns":1781516938582448756,"hash":"c5a32b94ec287938258195a65277732f0ee290bcdf577af40009322383816c65"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4028,"mtime_ns":1781522583736261243,"hash":"59af02e5966b18ea820af39e59750ddaf6cb2a569369fabb64b15e50ec8aef27"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9445,"mtime_ns":1782270207671264237,"hash":"37710f20c842a049c260e96a284970b10be5c0da0f7d2b50acb9bb382ffceb01"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":405,"mtime_ns":1781030340137303591,"hash":"6eabf820d178917a30ec700c7ad2059e65c24575f6feecfb17d3bdf7540f1bdd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":27702,"mtime_ns":1782395094787357438,"hash":"f6139dfe2b644b50db59b29e005b1b859cca736e20a20b3dfc6056fcfc2138eb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16368,"mtime_ns":1782218303036194938,"hash":"95c7d60beb5d9de0b270b262a387b465081235ed6649be2974bae8bd6caef844"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":15881,"mtime_ns":1782304885689747559,"hash":"72a58c77c54c77aae68b8774c183fc59acd2a09de32ba29964f6aa5cb9dd86ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18168,"mtime_ns":1781947165287219466,"hash":"b5a488fc83e88fe15cd0e164c025797e45a73e948420f14fa5b4999856aefea1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":9404,"mtime_ns":1782269224532533125,"hash":"9110e3e800c294b51371061a3df7837e5a6477600b26e3830fcfcbcaea9ce9c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":5922,"mtime_ns":1782264096615743546,"hash":"aeaabdf32c3e05f3de484ab101f228f1d2f296b38d176e35c75f294cf3275333"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3069,"mtime_ns":1781158861723407745,"hash":"6ca39eda6028233698ef3f32989d63f5a3d010027c7cb6858aa123ffa323b881"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13302,"mtime_ns":1782108983632585455,"hash":"6cc45c1dca3266b080b96f3e245eee74bf18a419810d0559ca156315b3512638"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14001,"mtime_ns":1782268560926360821,"hash":"3ae36753b8f22acab68b06f07a25c9bdcd112bc92ce1a3413ccec51bd8df6036"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5139,"mtime_ns":1781158896607181549,"hash":"56801b2d0129952d83d187d421b1814b503b858a5823cc4aa2b05cf8801daae0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":10548,"mtime_ns":1782384937498335845,"hash":"8012d0040cee9c312efca9f314dafbff0fea57209d2c1a1d8ba4847bc0ba9264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":10744,"mtime_ns":1781557035803701281,"hash":"82a7e749dc4a78f90d588b6460fb1c6b25594910d4c21fbe0f536e29d5a4d5d4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":20725,"mtime_ns":1782403897018960529,"hash":"50fa1f98dc328a71a1f086deb5197b603219213b9bf888c4dfc2e49aae7edfa5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":10497,"mtime_ns":1781520442059899034,"hash":"06548919f6a826850f8e2b392875bb773a3dd1bfe0c670321e68b8fff30c132b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9305,"mtime_ns":1782400448447079773,"hash":"97baf644fcae088dfa8c41ccf4a6e519c05e8d8308bd22db0a68e9e39522b76d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":13363,"mtime_ns":1782367200506345625,"hash":"ad782caaf9d874097e138f7407bbe018dfb48d8860d052eafcedfafd04a9b85b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4396,"mtime_ns":1781636247076221267,"hash":"7933e87593eed0c37a4f4df9548672598d1c0268630c17f49e8db191a3c84f48"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":2572,"mtime_ns":1781158875288396478,"hash":"98bf6bcf59d1f2beaeb193060cf9dede5187b27dc8223eb075f274ff042d5e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"}} \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json index c3668b06..cf914953 100644 --- a/graphify-out/graph.json +++ b/graphify-out/graph.json @@ -260,7 +260,7 @@ "source_location": "L1", "_origin": "ast", "id": "layout_adminlayout", - "community": 19, + "community": 8, "norm_label": "adminlayout.tsx" }, { @@ -270,7 +270,7 @@ "source_location": "L7", "_origin": "ast", "id": "layout_adminlayout_adminlayout", - "community": 19, + "community": 8, "norm_label": "adminlayout()" }, { @@ -280,7 +280,7 @@ "source_location": "L1", "_origin": "ast", "id": "layout_sidebar", - "community": 0, + "community": 8, "norm_label": "sidebar.tsx" }, { @@ -290,7 +290,7 @@ "source_location": "L33", "_origin": "ast", "id": "layout_sidebar_sectionitem", - "community": 0, + "community": 8, "norm_label": "sectionitem" }, { @@ -300,7 +300,7 @@ "source_location": "L39", "_origin": "ast", "id": "layout_sidebar_section", - "community": 0, + "community": 8, "norm_label": "section" }, { @@ -310,7 +310,7 @@ "source_location": "L41", "_origin": "ast", "id": "layout_sidebar_buildsections", - "community": 0, + "community": 8, "norm_label": "buildsections()" }, { @@ -320,7 +320,7 @@ "source_location": "L415", "_origin": "ast", "id": "layout_sidebar_role_labels", - "community": 0, + "community": 8, "norm_label": "role_labels" }, { @@ -330,7 +330,7 @@ "source_location": "L424", "_origin": "ast", "id": "layout_sidebar_hues", - "community": 0, + "community": 8, "norm_label": "hues" }, { @@ -340,7 +340,7 @@ "source_location": "L426", "_origin": "ast", "id": "layout_sidebar_avatarbg", - "community": 0, + "community": 8, "norm_label": "avatarbg()" }, { @@ -350,7 +350,7 @@ "source_location": "L431", "_origin": "ast", "id": "layout_sidebar_props", - "community": 0, + "community": 8, "norm_label": "props" }, { @@ -360,7 +360,7 @@ "source_location": "L436", "_origin": "ast", "id": "layout_sidebar_sidebar", - "community": 0, + "community": 8, "norm_label": "sidebar()" }, { @@ -370,7 +370,7 @@ "source_location": "L1", "_origin": "ast", "id": "layout_topbar", - "community": 19, + "community": 8, "norm_label": "topbar.tsx" }, { @@ -380,7 +380,7 @@ "source_location": "L8", "_origin": "ast", "id": "layout_topbar_topbar", - "community": 19, + "community": 8, "norm_label": "topbar()" }, { @@ -520,7 +520,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_featuregate", - "community": 0, + "community": 8, "norm_label": "featuregate.tsx" }, { @@ -530,7 +530,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_featuregate_featuregateprops", - "community": 0, + "community": 8, "norm_label": "featuregateprops" }, { @@ -540,7 +540,7 @@ "source_location": "L11", "_origin": "ast", "id": "ui_featuregate_featuregate", - "community": 0, + "community": 8, "norm_label": "featuregate()" }, { @@ -710,7 +710,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pageheader", - "community": 8, + "community": 182, "norm_label": "pageheader.tsx" }, { @@ -720,7 +720,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_pageheader_crumb", - "community": 8, + "community": 182, "norm_label": "crumb" }, { @@ -730,7 +730,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_pageheader_props", - "community": 8, + "community": 182, "norm_label": "props" }, { @@ -740,7 +740,7 @@ "source_location": "L17", "_origin": "ast", "id": "ui_pageheader_pageheader", - "community": 8, + "community": 182, "norm_label": "pageheader()" }, { @@ -880,7 +880,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_persiandateinput", - "community": 11, + "community": 3, "norm_label": "persiandateinput.tsx" }, { @@ -890,7 +890,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_persiandateinput_props", - "community": 11, + "community": 3, "norm_label": "props" }, { @@ -900,7 +900,7 @@ "source_location": "L15", "_origin": "ast", "id": "ui_persiandateinput_persiandateinput", - "community": 11, + "community": 3, "norm_label": "persiandateinput()" }, { @@ -1140,7 +1140,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_statusbadge", - "community": 8, + "community": 3, "norm_label": "statusbadge.tsx" }, { @@ -1150,7 +1150,7 @@ "source_location": "L4", "_origin": "ast", "id": "ui_statusbadge_badgecolor", - "community": 8, + "community": 3, "norm_label": "badgecolor" }, { @@ -1160,7 +1160,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_statusbadge_appointmentmap", - "community": 8, + "community": 3, "norm_label": "appointmentmap" }, { @@ -1170,7 +1170,7 @@ "source_location": "L16", "_origin": "ast", "id": "ui_statusbadge_paymentmap", - "community": 8, + "community": 3, "norm_label": "paymentmap" }, { @@ -1180,7 +1180,7 @@ "source_location": "L24", "_origin": "ast", "id": "ui_statusbadge_smsmap", - "community": 8, + "community": 3, "norm_label": "smsmap" }, { @@ -1190,7 +1190,7 @@ "source_location": "L31", "_origin": "ast", "id": "ui_statusbadge_settlementmap", - "community": 8, + "community": 3, "norm_label": "settlementmap" }, { @@ -1200,7 +1200,7 @@ "source_location": "L37", "_origin": "ast", "id": "ui_statusbadge_props", - "community": 8, + "community": 3, "norm_label": "props" }, { @@ -1210,7 +1210,7 @@ "source_location": "L42", "_origin": "ast", "id": "ui_statusbadge_statusbadge", - "community": 8, + "community": 3, "norm_label": "statusbadge()" }, { @@ -1230,7 +1230,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_usepaymentconfig", - "community": 2, + "community": 182, "norm_label": "usepaymentconfig.ts" }, { @@ -1240,7 +1240,7 @@ "source_location": "L5", "_origin": "ast", "id": "hooks_usepaymentconfig_usepaymentconfig", - "community": 2, + "community": 182, "norm_label": "usepaymentconfig()" }, { @@ -1280,7 +1280,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_usesubscription", - "community": 0, + "community": 8, "norm_label": "usesubscription.ts" }, { @@ -1290,7 +1290,7 @@ "source_location": "L7", "_origin": "ast", "id": "hooks_usesubscription_usesubscription", - "community": 0, + "community": 8, "norm_label": "usesubscription()" }, { @@ -1450,7 +1450,7 @@ "source_location": "L11", "_origin": "ast", "id": "lib_utils_todate", - "community": 11, + "community": 2, "norm_label": "todate()" }, { @@ -1460,7 +1460,7 @@ "source_location": "L19", "_origin": "ast", "id": "lib_utils_formatdate", - "community": 11, + "community": 3, "norm_label": "formatdate()" }, { @@ -1470,7 +1470,7 @@ "source_location": "L27", "_origin": "ast", "id": "lib_utils_formatdatetime", - "community": 11, + "community": 2, "norm_label": "formatdatetime()" }, { @@ -1700,7 +1700,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_appointmentdetailpage", - "community": 8, + "community": 3, "norm_label": "appointmentdetailpage.tsx" }, { @@ -1710,7 +1710,7 @@ "source_location": "L15", "_origin": "ast", "id": "pages_appointmentdetailpage_all_statuses", - "community": 8, + "community": 3, "norm_label": "all_statuses" }, { @@ -1720,7 +1720,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_appointmentdetailpage_inforow", - "community": 8, + "community": 3, "norm_label": "inforow()" }, { @@ -1730,7 +1730,7 @@ "source_location": "L34", "_origin": "ast", "id": "pages_appointmentdetailpage_appointmentdetailpage", - "community": 11, + "community": 2, "norm_label": "appointmentdetailpage()" }, { @@ -4680,7 +4680,7 @@ "source_location": "L1432", "_origin": "ast", "id": "pages_mypatientspage_sessionrow", - "community": 11, + "community": 2, "norm_label": "sessionrow()" }, { @@ -4710,7 +4710,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_mysecretariespage", - "community": 3, + "community": 8, "norm_label": "mysecretariespage.tsx" }, { @@ -4720,7 +4720,7 @@ "source_location": "L32", "_origin": "ast", "id": "pages_mysecretariespage_default_permissions", - "community": 3, + "community": 8, "norm_label": "default_permissions" }, { @@ -4730,7 +4730,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_mysecretariespage_permsection", - "community": 3, + "community": 8, "norm_label": "permsection" }, { @@ -4740,7 +4740,7 @@ "source_location": "L46", "_origin": "ast", "id": "pages_mysecretariespage_permission_labels", - "community": 3, + "community": 8, "norm_label": "permission_labels" }, { @@ -4750,7 +4750,7 @@ "source_location": "L86", "_origin": "ast", "id": "pages_mysecretariespage_all_actions", - "community": 3, + "community": 8, "norm_label": "all_actions" }, { @@ -4760,7 +4760,7 @@ "source_location": "L94", "_origin": "ast", "id": "pages_mysecretariespage_action_headers", - "community": 3, + "community": 8, "norm_label": "action_headers" }, { @@ -4770,7 +4770,7 @@ "source_location": "L103", "_origin": "ast", "id": "pages_mysecretariespage_permissionsmatrix", - "community": 3, + "community": 8, "norm_label": "permissionsmatrix()" }, { @@ -4780,7 +4780,7 @@ "source_location": "L247", "_origin": "ast", "id": "pages_mysecretariespage_createschema", - "community": 3, + "community": 8, "norm_label": "createschema" }, { @@ -4790,7 +4790,7 @@ "source_location": "L251", "_origin": "ast", "id": "pages_mysecretariespage_createform", - "community": 3, + "community": 8, "norm_label": "createform" }, { @@ -4800,7 +4800,7 @@ "source_location": "L253", "_origin": "ast", "id": "pages_mysecretariespage_clinicdoctor", - "community": 3, + "community": 8, "norm_label": "clinicdoctor" }, { @@ -4810,7 +4810,7 @@ "source_location": "L260", "_origin": "ast", "id": "pages_mysecretariespage_mysecretariespage", - "community": 0, + "community": 8, "norm_label": "mysecretariespage()" }, { @@ -4930,7 +4930,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_paymentdetailpage", - "community": 11, + "community": 2, "norm_label": "paymentdetailpage.tsx" }, { @@ -4940,7 +4940,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_paymentdetailpage_inforow", - "community": 11, + "community": 2, "norm_label": "inforow()" }, { @@ -4950,7 +4950,7 @@ "source_location": "L21", "_origin": "ast", "id": "pages_paymentdetailpage_paymentdetailpage", - "community": 11, + "community": 2, "norm_label": "paymentdetailpage()" }, { @@ -5090,7 +5090,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_representationdetailpage", - "community": 8, + "community": 3, "norm_label": "representationdetailpage.tsx" }, { @@ -5100,7 +5100,7 @@ "source_location": "L16", "_origin": "ast", "id": "pages_representationdetailpage_detailrow", - "community": 8, + "community": 3, "norm_label": "detailrow()" }, { @@ -5110,7 +5110,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_representationdetailpage_representationdetailpage", - "community": 8, + "community": 3, "norm_label": "representationdetailpage()" }, { @@ -5520,7 +5520,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_settlementdetailpage", - "community": 0, + "community": 2, "norm_label": "settlementdetailpage.tsx" }, { @@ -5530,7 +5530,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetail", - "community": 0, + "community": 2, "norm_label": "settlementdetail" }, { @@ -5540,7 +5540,7 @@ "source_location": "L30", "_origin": "ast", "id": "pages_settlementdetailpage_row", - "community": 0, + "community": 2, "norm_label": "row()" }, { @@ -5550,7 +5550,7 @@ "source_location": "L39", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetailpage", - "community": 0, + "community": 2, "norm_label": "settlementdetailpage()" }, { @@ -5590,7 +5590,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_smspage", - "community": 8, + "community": 3, "norm_label": "smspage.tsx" }, { @@ -5600,7 +5600,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_smspage_templateschema", - "community": 8, + "community": 3, "norm_label": "templateschema" }, { @@ -5610,7 +5610,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_smspage_templateformdata", - "community": 8, + "community": 3, "norm_label": "templateformdata" }, { @@ -5620,7 +5620,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_smspage_tab", - "community": 8, + "community": 3, "norm_label": "tab" }, { @@ -5630,7 +5630,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_smspage_status_log_meta", - "community": 8, + "community": 3, "norm_label": "status_log_meta" }, { @@ -5640,7 +5640,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_smspage_tag_labels", - "community": 8, + "community": 3, "norm_label": "tag_labels" }, { @@ -5650,7 +5650,7 @@ "source_location": "L43", "_origin": "ast", "id": "pages_smspage_tag_filter_options", - "community": 8, + "community": 3, "norm_label": "tag_filter_options" }, { @@ -5660,7 +5660,7 @@ "source_location": "L48", "_origin": "ast", "id": "pages_smspage_smspage", - "community": 11, + "community": 2, "norm_label": "smspage()" }, { @@ -5670,7 +5670,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_smswalletpage", - "community": 2, + "community": 182, "norm_label": "smswalletpage.tsx" }, { @@ -5680,7 +5680,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_smswalletpage_chargeschema", - "community": 2, + "community": 182, "norm_label": "chargeschema" }, { @@ -5690,7 +5690,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_smswalletpage_chargeform", - "community": 2, + "community": 182, "norm_label": "chargeform" }, { @@ -5700,7 +5700,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_smswalletpage_empty_logs", - "community": 2, + "community": 182, "norm_label": "empty_logs" }, { @@ -5710,7 +5710,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_smswalletpage_reminder_hour_options", - "community": 2, + "community": 182, "norm_label": "reminder_hour_options" }, { @@ -5720,7 +5720,7 @@ "source_location": "L31", "_origin": "ast", "id": "pages_smswalletpage_post_visit_vars", - "community": 2, + "community": 182, "norm_label": "post_visit_vars" }, { @@ -5730,7 +5730,7 @@ "source_location": "L38", "_origin": "ast", "id": "pages_smswalletpage_smswalletpageinner", - "community": 2, + "community": 182, "norm_label": "smswalletpageinner()" }, { @@ -5740,7 +5740,7 @@ "source_location": "L540", "_origin": "ast", "id": "pages_smswalletpage_smswalletpage", - "community": 2, + "community": 182, "norm_label": "smswalletpage()" }, { @@ -5750,7 +5750,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_staffpage", - "community": 8, + "community": 3, "norm_label": "staffpage.tsx" }, { @@ -5760,7 +5760,7 @@ "source_location": "L18", "_origin": "ast", "id": "pages_staffpage_schema", - "community": 8, + "community": 3, "norm_label": "schema" }, { @@ -5770,7 +5770,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_staffpage_staffformdata", - "community": 8, + "community": 3, "norm_label": "staffformdata" }, { @@ -5780,7 +5780,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_staffpage_empty", - "community": 8, + "community": 3, "norm_label": "empty" }, { @@ -5790,7 +5790,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_staffpage_staffpage", - "community": 8, + "community": 3, "norm_label": "staffpage()" }, { @@ -5800,7 +5800,7 @@ "source_location": "L246", "_origin": "ast", "id": "pages_staffpage_staffformfields", - "community": 8, + "community": 3, "norm_label": "staffformfields()" }, { @@ -5810,7 +5810,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_subscriptionpage", - "community": 2, + "community": 182, "norm_label": "subscriptionpage.tsx" }, { @@ -5820,7 +5820,7 @@ "source_location": "L17", "_origin": "ast", "id": "pages_subscriptionpage_plan_feature_labels", - "community": 2, + "community": 182, "norm_label": "plan_feature_labels" }, { @@ -5830,7 +5830,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_subscriptionpage_plan_meta", - "community": 2, + "community": 182, "norm_label": "plan_meta" }, { @@ -5840,7 +5840,7 @@ "source_location": "L45", "_origin": "ast", "id": "pages_subscriptionpage_gateway_labels", - "community": 2, + "community": 182, "norm_label": "gateway_labels" }, { @@ -5850,7 +5850,7 @@ "source_location": "L49", "_origin": "ast", "id": "pages_subscriptionpage_subscriptionpage", - "community": 2, + "community": 182, "norm_label": "subscriptionpage()" }, { @@ -5860,7 +5860,7 @@ "source_location": "L380", "_origin": "ast", "id": "pages_subscriptionpage_plancard", - "community": 2, + "community": 182, "norm_label": "plancard()" }, { @@ -5870,7 +5870,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_userdetailpage", - "community": 11, + "community": 235, "norm_label": "userdetailpage.tsx" }, { @@ -5880,7 +5880,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_userdetailpage_adminuserdetail", - "community": 11, + "community": 235, "norm_label": "adminuserdetail" }, { @@ -5890,7 +5890,7 @@ "source_location": "L35", "_origin": "ast", "id": "pages_userdetailpage_userprofiledata", - "community": 11, + "community": 235, "norm_label": "userprofiledata" }, { @@ -5900,7 +5900,7 @@ "source_location": "L53", "_origin": "ast", "id": "pages_userdetailpage_gender_labels", - "community": 11, + "community": 235, "norm_label": "gender_labels" }, { @@ -5910,7 +5910,7 @@ "source_location": "L54", "_origin": "ast", "id": "pages_userdetailpage_marital_labels", - "community": 11, + "community": 235, "norm_label": "marital_labels" }, { @@ -5920,7 +5920,7 @@ "source_location": "L57", "_origin": "ast", "id": "pages_userdetailpage_medical_sections", - "community": 11, + "community": 235, "norm_label": "medical_sections" }, { @@ -5930,7 +5930,7 @@ "source_location": "L73", "_origin": "ast", "id": "pages_userdetailpage_role_meta", - "community": 11, + "community": 235, "norm_label": "role_meta" }, { @@ -5940,7 +5940,7 @@ "source_location": "L81", "_origin": "ast", "id": "pages_userdetailpage_role_map", - "community": 11, + "community": 235, "norm_label": "role_map" }, { @@ -5950,7 +5950,7 @@ "source_location": "L89", "_origin": "ast", "id": "pages_userdetailpage_getprimaryrole", - "community": 11, + "community": 235, "norm_label": "getprimaryrole()" }, { @@ -5960,7 +5960,7 @@ "source_location": "L97", "_origin": "ast", "id": "pages_userdetailpage_avatar_colors", - "community": 11, + "community": 235, "norm_label": "avatar_colors" }, { @@ -5970,7 +5970,7 @@ "source_location": "L105", "_origin": "ast", "id": "pages_userdetailpage_bigavatar", - "community": 11, + "community": 235, "norm_label": "bigavatar()" }, { @@ -5980,7 +5980,7 @@ "source_location": "L116", "_origin": "ast", "id": "pages_userdetailpage_infocard", - "community": 11, + "community": 235, "norm_label": "infocard()" }, { @@ -5990,7 +5990,7 @@ "source_location": "L152", "_origin": "ast", "id": "pages_userdetailpage_editschema", - "community": 11, + "community": 235, "norm_label": "editschema" }, { @@ -6000,7 +6000,7 @@ "source_location": "L157", "_origin": "ast", "id": "pages_userdetailpage_editform", - "community": 11, + "community": 235, "norm_label": "editform" }, { @@ -6010,7 +6010,7 @@ "source_location": "L161", "_origin": "ast", "id": "pages_userdetailpage_changerolemodal", - "community": 11, + "community": 235, "norm_label": "changerolemodal()" }, { @@ -6020,7 +6020,7 @@ "source_location": "L201", "_origin": "ast", "id": "pages_userdetailpage_userdetailpage", - "community": 11, + "community": 235, "norm_label": "userdetailpage()" }, { @@ -6030,7 +6030,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_userspage", - "community": 235, + "community": 19, "norm_label": "userspage.tsx" }, { @@ -6040,7 +6040,7 @@ "source_location": "L20", "_origin": "ast", "id": "pages_userspage_adminuser", - "community": 235, + "community": 19, "norm_label": "adminuser" }, { @@ -6050,7 +6050,7 @@ "source_location": "L32", "_origin": "ast", "id": "pages_userspage_userstats", - "community": 235, + "community": 19, "norm_label": "userstats" }, { @@ -6060,7 +6060,7 @@ "source_location": "L43", "_origin": "ast", "id": "pages_userspage_hues_list", - "community": 235, + "community": 19, "norm_label": "hues_list" }, { @@ -6070,7 +6070,7 @@ "source_location": "L45", "_origin": "ast", "id": "pages_userspage_role_meta", - "community": 235, + "community": 19, "norm_label": "role_meta" }, { @@ -6080,7 +6080,7 @@ "source_location": "L53", "_origin": "ast", "id": "pages_userspage_getprimaryrole", - "community": 235, + "community": 19, "norm_label": "getprimaryrole()" }, { @@ -6090,7 +6090,7 @@ "source_location": "L61", "_origin": "ast", "id": "pages_userspage_useravatar", - "community": 235, + "community": 19, "norm_label": "useravatar()" }, { @@ -6100,7 +6100,7 @@ "source_location": "L76", "_origin": "ast", "id": "pages_userspage_rolebadge", - "community": 235, + "community": 19, "norm_label": "rolebadge()" }, { @@ -6110,7 +6110,7 @@ "source_location": "L87", "_origin": "ast", "id": "pages_userspage_activebadge", - "community": 235, + "community": 19, "norm_label": "activebadge()" }, { @@ -6120,7 +6120,7 @@ "source_location": "L98", "_origin": "ast", "id": "pages_userspage_changerolemodal", - "community": 235, + "community": 19, "norm_label": "changerolemodal()" }, { @@ -6130,7 +6130,7 @@ "source_location": "L148", "_origin": "ast", "id": "pages_userspage_role_tabs", - "community": 235, + "community": 19, "norm_label": "role_tabs" }, { @@ -6140,7 +6140,7 @@ "source_location": "L159", "_origin": "ast", "id": "pages_userspage_userspage", - "community": 235, + "community": 19, "norm_label": "userspage()" }, { @@ -6210,7 +6210,7 @@ "source_location": "L1", "_origin": "ast", "id": "stores_uistore", - "community": 19, + "community": 8, "norm_label": "uistore.ts" }, { @@ -6220,7 +6220,7 @@ "source_location": "L4", "_origin": "ast", "id": "stores_uistore_hues", - "community": 19, + "community": 8, "norm_label": "hues" }, { @@ -6230,7 +6230,7 @@ "source_location": "L12", "_origin": "ast", "id": "stores_uistore_brandhue", - "community": 19, + "community": 8, "norm_label": "brandhue" }, { @@ -6240,7 +6240,7 @@ "source_location": "L14", "_origin": "ast", "id": "stores_uistore_uistate", - "community": 19, + "community": 8, "norm_label": "uistate" }, { @@ -6250,7 +6250,7 @@ "source_location": "L28", "_origin": "ast", "id": "stores_uistore_applytheme", - "community": 19, + "community": 8, "norm_label": "applytheme()" }, { @@ -6260,7 +6260,7 @@ "source_location": "L37", "_origin": "ast", "id": "stores_uistore_useuistore", - "community": 19, + "community": 8, "norm_label": "useuistore" }, { @@ -6270,7 +6270,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index", - "community": 8, + "community": 3, "norm_label": "index.ts" }, { @@ -6280,7 +6280,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index_user", - "community": 8, + "community": 3, "norm_label": "user" }, { @@ -6290,7 +6290,7 @@ "source_location": "L15", "_origin": "ast", "id": "types_index_userprofile", - "community": 8, + "community": 3, "norm_label": "userprofile" }, { @@ -6300,7 +6300,7 @@ "source_location": "L26", "_origin": "ast", "id": "types_index_doctor", - "community": 8, + "community": 3, "norm_label": "doctor" }, { @@ -6330,7 +6330,7 @@ "source_location": "L82", "_origin": "ast", "id": "types_index_appointmentstatus", - "community": 8, + "community": 3, "norm_label": "appointmentstatus" }, { @@ -6340,7 +6340,7 @@ "source_location": "L91", "_origin": "ast", "id": "types_index_appointment", - "community": 8, + "community": 3, "norm_label": "appointment" }, { @@ -6350,7 +6350,7 @@ "source_location": "L107", "_origin": "ast", "id": "types_index_paymentstatus", - "community": 8, + "community": 3, "norm_label": "paymentstatus" }, { @@ -6360,7 +6360,7 @@ "source_location": "L113", "_origin": "ast", "id": "types_index_paymentgateway", - "community": 8, + "community": 3, "norm_label": "paymentgateway" }, { @@ -6370,7 +6370,7 @@ "source_location": "L115", "_origin": "ast", "id": "types_index_payment", - "community": 11, + "community": 2, "norm_label": "payment" }, { @@ -6380,7 +6380,7 @@ "source_location": "L127", "_origin": "ast", "id": "types_index_settlementstatus", - "community": 8, + "community": 3, "norm_label": "settlementstatus" }, { @@ -6400,7 +6400,7 @@ "source_location": "L141", "_origin": "ast", "id": "types_index_representation", - "community": 8, + "community": 3, "norm_label": "representation" }, { @@ -6430,7 +6430,7 @@ "source_location": "L180", "_origin": "ast", "id": "types_index_smstemplatestatus", - "community": 8, + "community": 3, "norm_label": "smstemplatestatus" }, { @@ -6440,7 +6440,7 @@ "source_location": "L182", "_origin": "ast", "id": "types_index_smstemplate", - "community": 8, + "community": 3, "norm_label": "smstemplate" }, { @@ -6450,7 +6450,7 @@ "source_location": "L192", "_origin": "ast", "id": "types_index_smslog", - "community": 8, + "community": 3, "norm_label": "smslog" }, { @@ -6460,7 +6460,7 @@ "source_location": "L203", "_origin": "ast", "id": "types_index_smsmessagetext", - "community": 8, + "community": 3, "norm_label": "smsmessagetext" }, { @@ -6480,7 +6480,7 @@ "source_location": "L219", "_origin": "ast", "id": "types_index_city", - "community": 8, + "community": 3, "norm_label": "city" }, { @@ -6490,7 +6490,7 @@ "source_location": "L238", "_origin": "ast", "id": "types_index_specialtyfull", - "community": 8, + "community": 3, "norm_label": "specialtyfull" }, { @@ -6520,7 +6520,7 @@ "source_location": "L267", "_origin": "ast", "id": "types_index_tag", - "community": 8, + "community": 3, "norm_label": "tag" }, { @@ -6560,7 +6560,7 @@ "source_location": "L325", "_origin": "ast", "id": "types_index_specialty", - "community": 8, + "community": 3, "norm_label": "specialty" }, { @@ -6570,7 +6570,7 @@ "source_location": "L332", "_origin": "ast", "id": "types_index_clinicstaff", - "community": 8, + "community": 3, "norm_label": "clinicstaff" }, { @@ -6580,7 +6580,7 @@ "source_location": "L343", "_origin": "ast", "id": "types_index_subscriptionplan", - "community": 2, + "community": 182, "norm_label": "subscriptionplan" }, { @@ -6590,7 +6590,7 @@ "source_location": "L352", "_origin": "ast", "id": "types_index_subscriptionperiod", - "community": 2, + "community": 182, "norm_label": "subscriptionperiod" }, { @@ -6600,7 +6600,7 @@ "source_location": "L360", "_origin": "ast", "id": "types_index_mysubscriptiondata", - "community": 2, + "community": 182, "norm_label": "mysubscriptiondata" }, { @@ -6610,7 +6610,7 @@ "source_location": "L377", "_origin": "ast", "id": "types_index_mysubscription", - "community": 8, + "community": 3, "norm_label": "mysubscription" }, { @@ -6640,7 +6640,7 @@ "source_location": "L403", "_origin": "ast", "id": "types_index_smswalletbalance", - "community": 2, + "community": 182, "norm_label": "smswalletbalance" }, { @@ -6650,7 +6650,7 @@ "source_location": "L409", "_origin": "ast", "id": "types_index_smswalletlog", - "community": 2, + "community": 182, "norm_label": "smswalletlog" }, { @@ -6660,7 +6660,7 @@ "source_location": "L417", "_origin": "ast", "id": "types_index_smssettings", - "community": 2, + "community": 182, "norm_label": "smssettings" }, { @@ -6670,7 +6670,7 @@ "source_location": "L427", "_origin": "ast", "id": "types_index_patientprofile", - "community": 8, + "community": 3, "norm_label": "patientprofile" }, { @@ -10030,7 +10030,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260614182549", - "community": 200, + "community": 480, "norm_label": "version20260614182549.php" }, { @@ -10040,7 +10040,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260614182549_version20260614182549", - "community": 200, + "community": 480, "norm_label": "version20260614182549" }, { @@ -10050,7 +10050,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260614182549_version20260614182549_getdescription", - "community": 200, + "community": 480, "norm_label": ".getdescription()" }, { @@ -10060,7 +10060,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260614182549_version20260614182549_up", - "community": 200, + "community": 480, "norm_label": ".up()" }, { @@ -10070,7 +10070,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260614182549_php_schema", - "community": 200, + "community": 480, "norm_label": "schema" }, { @@ -10080,7 +10080,7 @@ "source_location": "L29", "_origin": "ast", "id": "migrations_version20260614182549_version20260614182549_down", - "community": 200, + "community": 480, "norm_label": ".down()" }, { @@ -11710,7 +11710,7 @@ "source_location": "L1", "_origin": "ast", "id": "package", - "community": 341, + "community": 498, "norm_label": "package.json" }, { @@ -12200,7 +12200,7 @@ "source_location": "L53", "_origin": "ast", "id": "package_license", - "community": 341, + "community": 498, "norm_label": "license" }, { @@ -12210,7 +12210,7 @@ "source_location": "L54", "_origin": "ast", "id": "package_private", - "community": 341, + "community": 498, "norm_label": "private" }, { @@ -14950,7 +14950,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_appointmentexpiryservice", - "community": 16, + "community": 535, "norm_label": "appointmentexpiryservice.php" }, { @@ -14960,7 +14960,7 @@ "source_location": "L10", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice", - "community": 16, + "community": 535, "norm_label": "appointmentexpiryservice" }, { @@ -14970,7 +14970,7 @@ "source_location": "L12", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_construct", - "community": 16, + "community": 535, "norm_label": ".__construct()" }, { @@ -14980,7 +14980,7 @@ "source_location": "L23", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale", - "community": 16, + "community": 535, "norm_label": ".expirestale()" }, { @@ -17960,7 +17960,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_invoicerepository", - "community": 53, + "community": 381, "norm_label": "invoicerepository.php" }, { @@ -17970,7 +17970,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_invoicerepository_invoicerepository", - "community": 53, + "community": 381, "norm_label": "invoicerepository" }, { @@ -17980,7 +17980,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_invoicerepository_invoicerepository_construct", - "community": 53, + "community": 381, "norm_label": ".__construct()" }, { @@ -17990,7 +17990,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_billing_repository_invoicerepository_php_managerregistry", - "community": 53, + "community": 381, "norm_label": "managerregistry" }, { @@ -18000,7 +18000,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_invoicerepository_invoicerepository_findbyuuid", - "community": 53, + "community": 381, "norm_label": ".findbyuuid()" }, { @@ -18010,7 +18010,7 @@ "source_location": "L16", "_origin": "ast", "id": "src_billing_repository_invoicerepository_php_invoice", - "community": 53, + "community": 381, "norm_label": "invoice" }, { @@ -18020,7 +18020,7 @@ "source_location": "L21", "_origin": "ast", "id": "repository_invoicerepository_invoicerepository_findbysession", - "community": 53, + "community": 381, "norm_label": ".findbysession()" }, { @@ -18030,7 +18030,7 @@ "source_location": "L26", "_origin": "ast", "id": "repository_invoicerepository_invoicerepository_save", - "community": 53, + "community": 381, "norm_label": ".save()" }, { @@ -18450,7 +18450,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_blogcontroller", - "community": 58, + "community": 306, "norm_label": "blogcontroller.php" }, { @@ -18460,7 +18460,7 @@ "source_location": "L18", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller", - "community": 58, + "community": 306, "norm_label": "blogcontroller" }, { @@ -18470,7 +18470,7 @@ "source_location": "L21", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_construct", - "community": 58, + "community": 306, "norm_label": ".__construct()" }, { @@ -18480,7 +18480,7 @@ "source_location": "L29", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_list", - "community": 58, + "community": 306, "norm_label": ".list()" }, { @@ -18490,7 +18490,7 @@ "source_location": "L29", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_request", - "community": 58, + "community": 306, "norm_label": "request" }, { @@ -18500,7 +18500,7 @@ "source_location": "L29", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_jsonresponse", - "community": 58, + "community": 306, "norm_label": "jsonresponse" }, { @@ -18510,7 +18510,7 @@ "source_location": "L71", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_detail", - "community": 58, + "community": 306, "norm_label": ".detail()" }, { @@ -18520,7 +18520,7 @@ "source_location": "L116", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_create", - "community": 58, + "community": 306, "norm_label": ".create()" }, { @@ -18530,7 +18530,7 @@ "source_location": "L116", "_origin": "ast", "id": "src_blog_controller_blogcontroller_php_user", - "community": 58, + "community": 306, "norm_label": "user" }, { @@ -18540,7 +18540,7 @@ "source_location": "L204", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_update", - "community": 58, + "community": 306, "norm_label": ".update()" }, { @@ -18550,7 +18550,7 @@ "source_location": "L272", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_delete", - "community": 58, + "community": 306, "norm_label": ".delete()" }, { @@ -18560,7 +18560,7 @@ "source_location": "L321", "_origin": "ast", "id": "controller_blogcontroller_blogcontroller_uploadimage", - "community": 58, + "community": 306, "norm_label": ".uploadimage()" }, { @@ -21970,7 +21970,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_siteconfigrepository", - "community": 381, + "community": 53, "norm_label": "siteconfigrepository.php" }, { @@ -21980,7 +21980,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository", - "community": 381, + "community": 53, "norm_label": "siteconfigrepository" }, { @@ -21990,7 +21990,7 @@ "source_location": "L40", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_construct", - "community": 381, + "community": 53, "norm_label": ".__construct()" }, { @@ -22000,7 +22000,7 @@ "source_location": "L40", "_origin": "ast", "id": "src_config_repository_siteconfigrepository_php_managerregistry", - "community": 381, + "community": 53, "norm_label": "managerregistry" }, { @@ -22010,7 +22010,7 @@ "source_location": "L45", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_get", - "community": 381, + "community": 53, "norm_label": ".get()" }, { @@ -22020,7 +22020,7 @@ "source_location": "L54", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_getall", - "community": 381, + "community": 53, "norm_label": ".getall()" }, { @@ -22030,7 +22030,7 @@ "source_location": "L70", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_set", - "community": 381, + "community": 53, "norm_label": ".set()" }, { @@ -22040,7 +22040,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_taxratehistoryrepository", - "community": 53, + "community": 482, "norm_label": "taxratehistoryrepository.php" }, { @@ -22050,7 +22050,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_taxratehistoryrepository_taxratehistoryrepository", - "community": 53, + "community": 482, "norm_label": "taxratehistoryrepository" }, { @@ -22060,7 +22060,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_taxratehistoryrepository_taxratehistoryrepository_construct", - "community": 53, + "community": 482, "norm_label": ".__construct()" }, { @@ -22070,7 +22070,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_config_repository_taxratehistoryrepository_php_managerregistry", - "community": 53, + "community": 482, "norm_label": "managerregistry" }, { @@ -22080,7 +22080,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_taxratehistoryrepository_taxratehistoryrepository_save", - "community": 53, + "community": 482, "norm_label": ".save()" }, { @@ -22090,7 +22090,7 @@ "source_location": "L16", "_origin": "ast", "id": "taxratehistory", - "community": 53, + "community": 482, "norm_label": "taxratehistory" }, { @@ -24960,7 +24960,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_doctorinsurancerepository", - "community": 371, + "community": 53, "norm_label": "doctorinsurancerepository.php" }, { @@ -24970,7 +24970,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository", - "community": 371, + "community": 53, "norm_label": "doctorinsurancerepository" }, { @@ -24980,7 +24980,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_construct", - "community": 371, + "community": 53, "norm_label": ".__construct()" }, { @@ -24990,7 +24990,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_insurance_repository_doctorinsurancerepository_php_managerregistry", - "community": 371, + "community": 53, "norm_label": "managerregistry" }, { @@ -25000,7 +25000,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_save", - "community": 371, + "community": 53, "norm_label": ".save()" }, { @@ -25010,7 +25010,7 @@ "source_location": "L16", "_origin": "ast", "id": "doctorinsurance", - "community": 371, + "community": 53, "norm_label": "doctorinsurance" }, { @@ -25020,7 +25020,7 @@ "source_location": "L24", "_origin": "ast", "id": "repository_doctorinsurancerepository_doctorinsurancerepository_remove", - "community": 371, + "community": 53, "norm_label": ".remove()" }, { @@ -25030,7 +25030,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_entityinsurancepricingrepository", - "community": 26, + "community": 349, "norm_label": "entityinsurancepricingrepository.php" }, { @@ -25040,7 +25040,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "community": 26, + "community": 349, "norm_label": "entityinsurancepricingrepository" }, { @@ -25050,7 +25050,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_construct", - "community": 26, + "community": 349, "norm_label": ".__construct()" }, { @@ -25060,7 +25060,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry", - "community": 26, + "community": 349, "norm_label": "managerregistry" }, { @@ -25070,7 +25070,7 @@ "source_location": "L17", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findbyentity", - "community": 26, + "community": 349, "norm_label": ".findbyentity()" }, { @@ -25080,7 +25080,7 @@ "source_location": "L22", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findoneforinsurance", - "community": 26, + "community": 349, "norm_label": ".findoneforinsurance()" }, { @@ -25090,7 +25090,7 @@ "source_location": "L22", "_origin": "ast", "id": "entityinsurancepricing", - "community": 26, + "community": 349, "norm_label": "entityinsurancepricing" }, { @@ -25100,7 +25100,7 @@ "source_location": "L31", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_save", - "community": 26, + "community": 349, "norm_label": ".save()" }, { @@ -25110,7 +25110,7 @@ "source_location": "L39", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_remove", - "community": 26, + "community": 349, "norm_label": ".remove()" }, { @@ -29917,7 +29917,7 @@ "label": ".removeIban()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L169", + "source_location": "L178", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_removeiban", "community": 71, @@ -29927,17 +29927,27 @@ "label": ".normalizeIban()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L191", + "source_location": "L200", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", "community": 71, "norm_label": ".normalizeiban()" }, + { + "label": ".normalizeBirthDate()", + "file_type": "code", + "source_file": "src/Representation/Controller/RepresentationActionController.php", + "source_location": "L213", + "_origin": "ast", + "id": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", + "community": 71, + "norm_label": ".normalizebirthdate()" + }, { "label": ".createDoctor()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L200", + "source_location": "L231", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_createdoctor", "community": 71, @@ -29947,7 +29957,7 @@ "label": ".createClinic()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L289", + "source_location": "L320", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_createclinic", "community": 71, @@ -29957,7 +29967,7 @@ "label": ".doctors()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L368", + "source_location": "L399", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctors", "community": 71, @@ -29967,7 +29977,7 @@ "label": ".clinics()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L425", + "source_location": "L456", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_clinics", "community": 71, @@ -29977,7 +29987,7 @@ "label": ".appointments()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L478", + "source_location": "L509", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_appointments", "community": 71, @@ -29987,7 +29997,7 @@ "label": ".doctorStats()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L556", + "source_location": "L587", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctorstats", "community": 71, @@ -29997,7 +30007,7 @@ "label": ".toggleDoctorStatus()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L587", + "source_location": "L618", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", "community": 71, @@ -30007,7 +30017,7 @@ "label": ".dashboardSummary()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L618", + "source_location": "L649", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", "community": 71, @@ -30017,7 +30027,7 @@ "label": ".doctorsPerformance()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L669", + "source_location": "L700", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", "community": 71, @@ -30027,7 +30037,7 @@ "label": ".financeReport()", "file_type": "code", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L740", + "source_location": "L771", "_origin": "ast", "id": "controller_representationactioncontroller_representationactioncontroller_financereport", "community": 71, @@ -31970,7 +31980,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_financialbreakdownrepository", - "community": 6, + "community": 371, "norm_label": "financialbreakdownrepository.php" }, { @@ -31980,7 +31990,7 @@ "source_location": "L10", "_origin": "ast", "id": "repository_financialbreakdownrepository_financialbreakdownrepository", - "community": 6, + "community": 371, "norm_label": "financialbreakdownrepository" }, { @@ -31990,7 +32000,7 @@ "source_location": "L12", "_origin": "ast", "id": "repository_financialbreakdownrepository_financialbreakdownrepository_construct", - "community": 6, + "community": 371, "norm_label": ".__construct()" }, { @@ -32000,7 +32010,7 @@ "source_location": "L12", "_origin": "ast", "id": "src_settlement_repository_financialbreakdownrepository_php_managerregistry", - "community": 6, + "community": 371, "norm_label": "managerregistry" }, { @@ -32010,7 +32020,7 @@ "source_location": "L17", "_origin": "ast", "id": "repository_financialbreakdownrepository_financialbreakdownrepository_existsforpayment", - "community": 6, + "community": 371, "norm_label": ".existsforpayment()" }, { @@ -32020,7 +32030,7 @@ "source_location": "L17", "_origin": "ast", "id": "src_settlement_repository_financialbreakdownrepository_php_payment", - "community": 6, + "community": 371, "norm_label": "payment" }, { @@ -32030,7 +32040,7 @@ "source_location": "L22", "_origin": "ast", "id": "repository_financialbreakdownrepository_financialbreakdownrepository_save", - "community": 6, + "community": 371, "norm_label": ".save()" }, { @@ -32040,7 +32050,7 @@ "source_location": "L22", "_origin": "ast", "id": "financialbreakdown", - "community": 6, + "community": 371, "norm_label": "financialbreakdown" }, { @@ -32857,7 +32867,7 @@ "label": ".ibanMatch()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", - "source_location": "L54", + "source_location": "L58", "_origin": "ast", "id": "service_apiirservice_apiirservice_ibanmatch", "community": 352, @@ -32867,7 +32877,7 @@ "label": ".post()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", - "source_location": "L74", + "source_location": "L77", "_origin": "ast", "id": "service_apiirservice_apiirservice_post", "community": 352, @@ -32877,7 +32887,7 @@ "label": ".extractMatched()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", - "source_location": "L106", + "source_location": "L113", "_origin": "ast", "id": "service_apiirservice_apiirservice_extractmatched", "community": 352, @@ -34140,7 +34150,7 @@ "source_location": "L1", "_origin": "ast", "id": "entity_smswallet", - "community": 306, + "community": 16, "norm_label": "smswallet.php" }, { @@ -34150,7 +34160,7 @@ "source_location": "L8", "_origin": "ast", "id": "entity_smswallet_smswallet", - "community": 306, + "community": 16, "norm_label": "smswallet" }, { @@ -34160,7 +34170,7 @@ "source_location": "L33", "_origin": "ast", "id": "entity_smswallet_smswallet_construct", - "community": 306, + "community": 16, "norm_label": ".__construct()" }, { @@ -34170,7 +34180,7 @@ "source_location": "L41", "_origin": "ast", "id": "entity_smswallet_smswallet_getid", - "community": 306, + "community": 16, "norm_label": ".getid()" }, { @@ -34180,7 +34190,7 @@ "source_location": "L42", "_origin": "ast", "id": "entity_smswallet_smswallet_getentitytype", - "community": 306, + "community": 16, "norm_label": ".getentitytype()" }, { @@ -34190,7 +34200,7 @@ "source_location": "L43", "_origin": "ast", "id": "entity_smswallet_smswallet_getentityid", - "community": 306, + "community": 16, "norm_label": ".getentityid()" }, { @@ -34200,7 +34210,7 @@ "source_location": "L44", "_origin": "ast", "id": "entity_smswallet_smswallet_getbalancerials", - "community": 306, + "community": 16, "norm_label": ".getbalancerials()" }, { @@ -34210,7 +34220,7 @@ "source_location": "L46", "_origin": "ast", "id": "entity_smswallet_smswallet_credit", - "community": 306, + "community": 16, "norm_label": ".credit()" }, { @@ -34220,7 +34230,7 @@ "source_location": "L52", "_origin": "ast", "id": "entity_smswallet_smswallet_debit", - "community": 306, + "community": 16, "norm_label": ".debit()" }, { @@ -34760,7 +34770,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_smstemplaterepository", - "community": 349, + "community": 164, "norm_label": "smstemplaterepository.php" }, { @@ -34770,7 +34780,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_smstemplaterepository_smstemplaterepository", - "community": 349, + "community": 164, "norm_label": "smstemplaterepository" }, { @@ -34780,7 +34790,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_smstemplaterepository_smstemplaterepository_construct", - "community": 349, + "community": 164, "norm_label": ".__construct()" }, { @@ -34790,7 +34800,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_sms_repository_smstemplaterepository_php_managerregistry", - "community": 349, + "community": 164, "norm_label": "managerregistry" }, { @@ -34800,7 +34810,7 @@ "source_location": "L12", "_origin": "ast", "id": "repository_smstemplaterepository_smstemplaterepository_findbyuuid", - "community": 349, + "community": 164, "norm_label": ".findbyuuid()" }, { @@ -34810,7 +34820,7 @@ "source_location": "L12", "_origin": "ast", "id": "smstemplate", - "community": 349, + "community": 164, "norm_label": "smstemplate" }, { @@ -34820,7 +34830,7 @@ "source_location": "L13", "_origin": "ast", "id": "repository_smstemplaterepository_smstemplaterepository_save", - "community": 349, + "community": 164, "norm_label": ".save()" }, { @@ -34830,7 +34840,7 @@ "source_location": "L14", "_origin": "ast", "id": "repository_smstemplaterepository_smstemplaterepository_remove", - "community": 349, + "community": 164, "norm_label": ".remove()" }, { @@ -54380,7 +54390,7 @@ "source_location": "L3153", "_origin": "ast", "id": "docs_clinicpro_manual_v2_33_post_image_clinic", - "community": 606, + "community": 304, "norm_label": "33. \ud83d\udd35 `post` image_clinic" }, { @@ -54390,7 +54400,7 @@ "source_location": "L3161", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3161", - "community": 606, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54400,7 +54410,7 @@ "source_location": "L3169", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3169", - "community": 606, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54410,7 +54420,7 @@ "source_location": "L3177", "_origin": "ast", "id": "docs_clinicpro_manual_v2_34_post_image_logo", - "community": 607, + "community": 304, "norm_label": "34. \ud83d\udd35 `post` image logo" }, { @@ -54420,7 +54430,7 @@ "source_location": "L3185", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185", - "community": 607, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54430,7 +54440,7 @@ "source_location": "L3193", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193", - "community": 607, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54490,7 +54500,7 @@ "source_location": "L3250", "_origin": "ast", "id": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "community": 608, + "community": 304, "norm_label": "36. \ud83d\udfe2 `get` get my rate" }, { @@ -54500,7 +54510,7 @@ "source_location": "L3260", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260", - "community": 608, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54510,7 +54520,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267", - "community": 608, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54520,7 +54530,7 @@ "source_location": "L3275", "_origin": "ast", "id": "docs_clinicpro_manual_v2_37_post_post", - "community": 494, + "community": 304, "norm_label": "37. \ud83d\udd35 `post` post" }, { @@ -54530,7 +54540,7 @@ "source_location": "L3283", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3283", - "community": 494, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54540,7 +54550,7 @@ "source_location": "L3290", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3290", - "community": 494, + "community": 304, "norm_label": "request body" }, { @@ -54550,7 +54560,7 @@ "source_location": "L3302", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3302", - "community": 494, + "community": 304, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -54560,7 +54570,7 @@ "source_location": "L3316", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3316", - "community": 494, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54570,7 +54580,7 @@ "source_location": "L3324", "_origin": "ast", "id": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "community": 572, + "community": 304, "norm_label": "38. \ud83d\udfe2 `get` unapproved comments" }, { @@ -54580,7 +54590,7 @@ "source_location": "L3332", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3332", - "community": 572, + "community": 304, "norm_label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc query" }, { @@ -54590,7 +54600,7 @@ "source_location": "L3339", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3339", - "community": 572, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54600,7 +54610,7 @@ "source_location": "L3346", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3346", - "community": 572, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54610,7 +54620,7 @@ "source_location": "L3354", "_origin": "ast", "id": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "community": 573, + "community": 304, "norm_label": "39. \ud83d\udfe1 `patch` comment confirmation" }, { @@ -54620,7 +54630,7 @@ "source_location": "L3362", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3362", - "community": 573, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54630,7 +54640,7 @@ "source_location": "L3369", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3369", - "community": 573, + "community": 304, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -54640,7 +54650,7 @@ "source_location": "L3375", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3375", - "community": 573, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54650,7 +54660,7 @@ "source_location": "L3383", "_origin": "ast", "id": "docs_clinicpro_manual_v2_40_post_post", - "community": 574, + "community": 304, "norm_label": "40. \ud83d\udd35 `post` post" }, { @@ -54660,7 +54670,7 @@ "source_location": "L3391", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3391", - "community": 574, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54670,7 +54680,7 @@ "source_location": "L3398", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3398", - "community": 574, + "community": 304, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -54680,7 +54690,7 @@ "source_location": "L3404", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3404", - "community": 574, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54770,7 +54780,7 @@ "source_location": "L3484", "_origin": "ast", "id": "docs_clinicpro_manual_v2_43_get_get", - "community": 609, + "community": 304, "norm_label": "43. \ud83d\udfe2 `get` get" }, { @@ -54780,7 +54790,7 @@ "source_location": "L3492", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492", - "community": 609, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54790,7 +54800,7 @@ "source_location": "L3498", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498", - "community": 609, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54840,7 +54850,7 @@ "source_location": "L3536", "_origin": "ast", "id": "docs_clinicpro_manual_v2_45_post_post", - "community": 576, + "community": 304, "norm_label": "45. \ud83d\udd35 `post` post" }, { @@ -54850,7 +54860,7 @@ "source_location": "L3544", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544", - "community": 576, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54860,7 +54870,7 @@ "source_location": "L3551", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551", - "community": 576, + "community": 304, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -54870,7 +54880,7 @@ "source_location": "L3557", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557", - "community": 576, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -54880,7 +54890,7 @@ "source_location": "L3565", "_origin": "ast", "id": "docs_clinicpro_manual_v2_46_patch_patch", - "community": 577, + "community": 304, "norm_label": "46. \ud83d\udfe1 `patch` patch" }, { @@ -54890,7 +54900,7 @@ "source_location": "L3573", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3573", - "community": 577, + "community": 304, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -54900,7 +54910,7 @@ "source_location": "L3580", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3580", - "community": 577, + "community": 304, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -54910,7 +54920,7 @@ "source_location": "L3586", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3586", - "community": 577, + "community": 304, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -55450,7 +55460,7 @@ "source_location": "L3994", "_origin": "ast", "id": "docs_clinicpro_manual_v2_61_post_post", - "community": 27, + "community": 484, "norm_label": "61. \ud83d\udd35 `post` post" }, { @@ -55460,7 +55470,7 @@ "source_location": "L4002", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4002", - "community": 27, + "community": 484, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -55470,7 +55480,7 @@ "source_location": "L4009", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_4009", - "community": 27, + "community": 484, "norm_label": "request body" }, { @@ -55480,7 +55490,7 @@ "source_location": "L4016", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4016", - "community": 27, + "community": 484, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -55490,7 +55500,7 @@ "source_location": "L4025", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4025", - "community": 27, + "community": 484, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -55500,7 +55510,7 @@ "source_location": "L4033", "_origin": "ast", "id": "docs_clinicpro_manual_v2_62_patch_patch", - "community": 496, + "community": 27, "norm_label": "62. \ud83d\udfe1 `patch` patch" }, { @@ -55510,7 +55520,7 @@ "source_location": "L4041", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4041", - "community": 496, + "community": 27, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -55520,7 +55530,7 @@ "source_location": "L4048", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_4048", - "community": 496, + "community": 27, "norm_label": "request body" }, { @@ -55530,7 +55540,7 @@ "source_location": "L4054", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4054", - "community": 496, + "community": 27, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -55540,7 +55550,7 @@ "source_location": "L4062", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4062", - "community": 496, + "community": 27, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59830,7 +59840,7 @@ "source_location": "L71", "_origin": "ast", "id": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "community": 480, + "community": 25, "norm_label": "get `/api/v1/appointment-settings/month-availability/{doctoruuid}`" }, { @@ -59840,7 +59850,7 @@ "source_location": "L77", "_origin": "ast", "id": "api_appointment_path_parameters", - "community": 480, + "community": 25, "norm_label": "path parameters" }, { @@ -59850,7 +59860,7 @@ "source_location": "L82", "_origin": "ast", "id": "api_appointment_query_parameters_82", - "community": 480, + "community": 25, "norm_label": "query parameters" }, { @@ -59860,7 +59870,7 @@ "source_location": "L90", "_origin": "ast", "id": "api_appointment_response_200_90", - "community": 480, + "community": 25, "norm_label": "response `200`" }, { @@ -59870,7 +59880,7 @@ "source_location": "L112", "_origin": "ast", "id": "api_appointment_errors_112", - "community": 480, + "community": 25, "norm_label": "errors" }, { @@ -60170,7 +60180,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_auth", - "community": 274, + "community": 38, "norm_label": "auth.md" }, { @@ -60190,7 +60200,7 @@ "source_location": "L8", "_origin": "ast", "id": "api_auth_post_api_v1_user_send_code", - "community": 38, + "community": 496, "norm_label": "post `/api/v1/user/send-code`" }, { @@ -60200,7 +60210,7 @@ "source_location": "L14", "_origin": "ast", "id": "api_auth_request_body", - "community": 38, + "community": 496, "norm_label": "request body" }, { @@ -60210,7 +60220,7 @@ "source_location": "L25", "_origin": "ast", "id": "api_auth_response_200", - "community": 38, + "community": 496, "norm_label": "response `200`" }, { @@ -60220,7 +60230,7 @@ "source_location": "L36", "_origin": "ast", "id": "api_auth_errors", - "community": 38, + "community": 496, "norm_label": "errors" }, { @@ -60230,7 +60240,7 @@ "source_location": "L44", "_origin": "ast", "id": "api_auth_post_api_v1_user_verify_code", - "community": 38, + "community": 533, "norm_label": "post `/api/v1/user/verify-code`" }, { @@ -60240,7 +60250,7 @@ "source_location": "L50", "_origin": "ast", "id": "api_auth_request_body_50", - "community": 38, + "community": 533, "norm_label": "request body" }, { @@ -60250,7 +60260,7 @@ "source_location": "L63", "_origin": "ast", "id": "api_auth_response_200_63", - "community": 38, + "community": 533, "norm_label": "response `200`" }, { @@ -60260,7 +60270,7 @@ "source_location": "L77", "_origin": "ast", "id": "api_auth_errors_77", - "community": 38, + "community": 533, "norm_label": "errors" }, { @@ -60610,7 +60620,7 @@ "source_location": "L458", "_origin": "ast", "id": "api_auth_get_api_v1_notification_mobile_target", - "community": 38, + "community": 539, "norm_label": "get `/api/v1/notification-mobile/{target}`" }, { @@ -60620,7 +60630,7 @@ "source_location": "L465", "_origin": "ast", "id": "api_auth_response_200_465", - "community": 38, + "community": 539, "norm_label": "response `200`" }, { @@ -60630,7 +60640,7 @@ "source_location": "L477", "_origin": "ast", "id": "api_auth_errors_477", - "community": 38, + "community": 539, "norm_label": "errors" }, { @@ -60700,7 +60710,7 @@ "source_location": "L537", "_origin": "ast", "id": "api_auth_post_api_v1_pre_registration", - "community": 38, + "community": 485, "norm_label": "post `/api/v1/pre-registration`" }, { @@ -60710,7 +60720,7 @@ "source_location": "L543", "_origin": "ast", "id": "api_auth_request_body_543", - "community": 38, + "community": 485, "norm_label": "request body" }, { @@ -60720,7 +60730,7 @@ "source_location": "L568", "_origin": "ast", "id": "api_auth_response_200_568", - "community": 38, + "community": 485, "norm_label": "response `200`" }, { @@ -60730,7 +60740,7 @@ "source_location": "L576", "_origin": "ast", "id": "api_auth_error_codes", - "community": 38, + "community": 485, "norm_label": "error codes" }, { @@ -60740,7 +60750,7 @@ "source_location": "L584", "_origin": "ast", "id": "api_auth_post_api_v1_user_otp_login", - "community": 38, + "community": 486, "norm_label": "post `/api/v1/user/otp-login`" }, { @@ -60750,7 +60760,7 @@ "source_location": "L590", "_origin": "ast", "id": "api_auth_request_body_590", - "community": 38, + "community": 486, "norm_label": "request body" }, { @@ -60760,7 +60770,7 @@ "source_location": "L599", "_origin": "ast", "id": "api_auth_response_200_599", - "community": 38, + "community": 486, "norm_label": "response `200`" }, { @@ -60770,7 +60780,7 @@ "source_location": "L610", "_origin": "ast", "id": "api_auth_error_codes_610", - "community": 38, + "community": 486, "norm_label": "error codes" }, { @@ -60780,7 +60790,7 @@ "source_location": "L620", "_origin": "ast", "id": "api_auth_post_api_v1_user_reset_password", - "community": 38, + "community": 494, "norm_label": "post `/api/v1/user/reset-password`" }, { @@ -60790,7 +60800,7 @@ "source_location": "L626", "_origin": "ast", "id": "api_auth_request_body_626", - "community": 38, + "community": 494, "norm_label": "request body" }, { @@ -60800,7 +60810,7 @@ "source_location": "L639", "_origin": "ast", "id": "api_auth_response_200_639", - "community": 38, + "community": 494, "norm_label": "response `200`" }, { @@ -60810,7 +60820,7 @@ "source_location": "L647", "_origin": "ast", "id": "api_auth_error_codes_647", - "community": 38, + "community": 494, "norm_label": "error codes" }, { @@ -62630,7 +62640,7 @@ "source_location": "L7", "_origin": "ast", "id": "api_doctor_post_api_v1_doctor", - "community": 534, + "community": 333, "norm_label": "post `/api/v1/doctor`" }, { @@ -62640,7 +62650,7 @@ "source_location": "L13", "_origin": "ast", "id": "api_doctor_request_body_application_json", - "community": 534, + "community": 333, "norm_label": "request body (`application/json`)" }, { @@ -62650,7 +62660,7 @@ "source_location": "L36", "_origin": "ast", "id": "api_doctor_response_201", - "community": 534, + "community": 333, "norm_label": "response `201`" }, { @@ -62660,7 +62670,7 @@ "source_location": "L56", "_origin": "ast", "id": "api_doctor_errors", - "community": 534, + "community": 333, "norm_label": "errors" }, { @@ -62670,7 +62680,7 @@ "source_location": "L65", "_origin": "ast", "id": "api_doctor_get_api_v1_doctor_uuid", - "community": 535, + "community": 333, "norm_label": "get `/api/v1/doctor/{uuid}`" }, { @@ -62680,7 +62690,7 @@ "source_location": "L71", "_origin": "ast", "id": "api_doctor_path_parameters", - "community": 535, + "community": 333, "norm_label": "path parameters" }, { @@ -62690,7 +62700,7 @@ "source_location": "L76", "_origin": "ast", "id": "api_doctor_response_200", - "community": 535, + "community": 333, "norm_label": "response `200`" }, { @@ -62700,7 +62710,7 @@ "source_location": "L114", "_origin": "ast", "id": "api_doctor_errors_114", - "community": 535, + "community": 333, "norm_label": "errors" }, { @@ -62710,7 +62720,7 @@ "source_location": "L121", "_origin": "ast", "id": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "community": 482, + "community": 333, "norm_label": "get `/api/v1/clinic/my-doctor/{doctoruuid}`" }, { @@ -62720,7 +62730,7 @@ "source_location": "L127", "_origin": "ast", "id": "api_doctor_path_parameters_127", - "community": 482, + "community": 333, "norm_label": "path parameters" }, { @@ -62730,7 +62740,7 @@ "source_location": "L132", "_origin": "ast", "id": "api_doctor_response_200_132", - "community": 482, + "community": 333, "norm_label": "response `200`" }, { @@ -62740,7 +62750,7 @@ "source_location": "L151", "_origin": "ast", "id": "api_doctor_errors_151", - "community": 482, + "community": 333, "norm_label": "errors" }, { @@ -62750,7 +62760,7 @@ "source_location": "L159", "_origin": "ast", "id": "api_doctor_schedule_fields_notes", - "community": 482, + "community": 333, "norm_label": "schedule fields notes" }, { @@ -62840,7 +62850,7 @@ "source_location": "L258", "_origin": "ast", "id": "api_doctor_delete_api_v1_doctor_uuid", - "community": 533, + "community": 333, "norm_label": "delete `/api/v1/doctor/{uuid}`" }, { @@ -62850,7 +62860,7 @@ "source_location": "L264", "_origin": "ast", "id": "api_doctor_path_parameters_264", - "community": 533, + "community": 333, "norm_label": "path parameters" }, { @@ -62860,7 +62870,7 @@ "source_location": "L269", "_origin": "ast", "id": "api_doctor_response_200_269", - "community": 533, + "community": 333, "norm_label": "response `200`" }, { @@ -62870,7 +62880,7 @@ "source_location": "L277", "_origin": "ast", "id": "api_doctor_errors_277", - "community": 533, + "community": 333, "norm_label": "errors" }, { @@ -62920,7 +62930,7 @@ "source_location": "L321", "_origin": "ast", "id": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", - "community": 593, + "community": 333, "norm_label": "get `/api/v1/clinic-pro/doctor-addresses/{doctorid}`" }, { @@ -62930,7 +62940,7 @@ "source_location": "L327", "_origin": "ast", "id": "api_doctor_path_parameters_327", - "community": 593, + "community": 333, "norm_label": "path parameters" }, { @@ -62940,7 +62950,7 @@ "source_location": "L332", "_origin": "ast", "id": "api_doctor_response_200_332", - "community": 593, + "community": 333, "norm_label": "response `200`" }, { @@ -62990,7 +63000,7 @@ "source_location": "L424", "_origin": "ast", "id": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "community": 484, + "community": 333, "norm_label": "patch `/api/v1/clinic-pro/doctor-address/{id}`" }, { @@ -63000,7 +63010,7 @@ "source_location": "L430", "_origin": "ast", "id": "api_doctor_path_parameters_430", - "community": 484, + "community": 333, "norm_label": "path parameters" }, { @@ -63010,7 +63020,7 @@ "source_location": "L435", "_origin": "ast", "id": "api_doctor_request_body_435", - "community": 484, + "community": 333, "norm_label": "request body" }, { @@ -63020,7 +63030,7 @@ "source_location": "L438", "_origin": "ast", "id": "api_doctor_response_200_438", - "community": 484, + "community": 333, "norm_label": "response `200`" }, { @@ -63030,7 +63040,7 @@ "source_location": "L441", "_origin": "ast", "id": "api_doctor_errors_441", - "community": 484, + "community": 333, "norm_label": "errors" }, { @@ -63130,7 +63140,7 @@ "source_location": "L11", "_origin": "ast", "id": "api_insurance_get_api_v1_insurances", - "community": 595, + "community": 228, "norm_label": "get `/api/v1/insurances`" }, { @@ -63140,7 +63150,7 @@ "source_location": "L17", "_origin": "ast", "id": "api_insurance_query_parameters", - "community": 595, + "community": 228, "norm_label": "query parameters" }, { @@ -63150,7 +63160,7 @@ "source_location": "L22", "_origin": "ast", "id": "api_insurance_response_200", - "community": 595, + "community": 228, "norm_label": "response `200`" }, { @@ -63160,7 +63170,7 @@ "source_location": "L47", "_origin": "ast", "id": "api_insurance_get_api_v1_admin_insurances", - "community": 539, + "community": 228, "norm_label": "get `/api/v1/admin/insurances`" }, { @@ -63170,7 +63180,7 @@ "source_location": "L53", "_origin": "ast", "id": "api_insurance_query_parameters_53", - "community": 539, + "community": 228, "norm_label": "query parameters" }, { @@ -63180,7 +63190,7 @@ "source_location": "L61", "_origin": "ast", "id": "api_insurance_response_200_61", - "community": 539, + "community": 228, "norm_label": "response `200`" }, { @@ -63190,7 +63200,7 @@ "source_location": "L70", "_origin": "ast", "id": "api_insurance_errors", - "community": 539, + "community": 228, "norm_label": "errors" }, { @@ -63240,7 +63250,7 @@ "source_location": "L113", "_origin": "ast", "id": "api_insurance_patch_api_v1_admin_insurance_id", - "community": 541, + "community": 228, "norm_label": "patch `/api/v1/admin/insurance/{id}`" }, { @@ -63250,7 +63260,7 @@ "source_location": "L119", "_origin": "ast", "id": "api_insurance_path_parameters", - "community": 541, + "community": 228, "norm_label": "path parameters" }, { @@ -63260,7 +63270,7 @@ "source_location": "L126", "_origin": "ast", "id": "api_insurance_response_200_126", - "community": 541, + "community": 228, "norm_label": "response `200`" }, { @@ -63270,7 +63280,7 @@ "source_location": "L129", "_origin": "ast", "id": "api_insurance_errors_129", - "community": 541, + "community": 228, "norm_label": "errors" }, { @@ -63300,7 +63310,7 @@ "source_location": "L151", "_origin": "ast", "id": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", - "community": 596, + "community": 228, "norm_label": "post `/api/v1/admin/insurance/{id}/upload-logo`" }, { @@ -63310,7 +63320,7 @@ "source_location": "L157", "_origin": "ast", "id": "api_insurance_request", - "community": 596, + "community": 228, "norm_label": "request" }, { @@ -63320,7 +63330,7 @@ "source_location": "L164", "_origin": "ast", "id": "api_insurance_response_200_164", - "community": 596, + "community": 228, "norm_label": "response `200`" }, { @@ -63530,7 +63540,7 @@ "source_location": "L351", "_origin": "ast", "id": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "community": 485, + "community": 228, "norm_label": "tenantinsurance \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc \u0628\u06cc\u0645\u0647\u200c\u06cc tenant (\u0641\u0627\u0632 \u06f1 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628)" }, { @@ -63540,7 +63550,7 @@ "source_location": "L355", "_origin": "ast", "id": "api_insurance_get_api_v1_billing_tenant_insurances", - "community": 485, + "community": 228, "norm_label": "get `/api/v1/billing/tenant-insurances`" }, { @@ -63550,7 +63560,7 @@ "source_location": "L383", "_origin": "ast", "id": "api_insurance_post_api_v1_billing_tenant_insurances", - "community": 485, + "community": 228, "norm_label": "post `/api/v1/billing/tenant-insurances`" }, { @@ -63560,7 +63570,7 @@ "source_location": "L397", "_origin": "ast", "id": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid", - "community": 485, + "community": 228, "norm_label": "patch `/api/v1/billing/tenant-insurances/{uuid}`" }, { @@ -63570,7 +63580,7 @@ "source_location": "L400", "_origin": "ast", "id": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid", - "community": 485, + "community": 228, "norm_label": "delete `/api/v1/billing/tenant-insurances/{uuid}`" }, { @@ -63580,7 +63590,7 @@ "source_location": "L411", "_origin": "ast", "id": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", - "community": 594, + "community": 228, "norm_label": "tenantservicecoverage \u2014 \u067e\u0648\u0634\u0634 \u062e\u062f\u0645\u062a \u062a\u062d\u062a \u06cc\u06a9 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f2)" }, { @@ -63590,7 +63600,7 @@ "source_location": "L415", "_origin": "ast", "id": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", - "community": 594, + "community": 228, "norm_label": "get `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`" }, { @@ -63600,7 +63610,7 @@ "source_location": "L440", "_origin": "ast", "id": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", - "community": 594, + "community": 228, "norm_label": "put `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`" }, { @@ -64790,7 +64800,7 @@ "source_location": "L67", "_origin": "ast", "id": "api_representation_get_api_v1_representation_uuid", - "community": 229, + "community": 534, "norm_label": "get `/api/v1/representation/{uuid}`" }, { @@ -64800,7 +64810,7 @@ "source_location": "L73", "_origin": "ast", "id": "api_representation_path_parameters", - "community": 229, + "community": 534, "norm_label": "path parameters" }, { @@ -64810,7 +64820,7 @@ "source_location": "L78", "_origin": "ast", "id": "api_representation_response_200", - "community": 229, + "community": 534, "norm_label": "response `200`" }, { @@ -64820,7 +64830,7 @@ "source_location": "L96", "_origin": "ast", "id": "api_representation_errors_96", - "community": 229, + "community": 534, "norm_label": "errors" }, { @@ -64900,7 +64910,7 @@ "source_location": "L156", "_origin": "ast", "id": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "community": 486, + "community": 229, "norm_label": "get `/api/v1/representation/{uuid}/dashboard/monthly`" }, { @@ -64910,7 +64920,7 @@ "source_location": "L162", "_origin": "ast", "id": "api_representation_path_parameters_162", - "community": 486, + "community": 229, "norm_label": "path parameters" }, { @@ -64920,7 +64930,7 @@ "source_location": "L167", "_origin": "ast", "id": "api_representation_query_parameters", - "community": 486, + "community": 229, "norm_label": "query parameters" }, { @@ -64930,7 +64940,7 @@ "source_location": "L173", "_origin": "ast", "id": "api_representation_response_200_173", - "community": 486, + "community": 229, "norm_label": "response `200`" }, { @@ -64940,7 +64950,7 @@ "source_location": "L191", "_origin": "ast", "id": "api_representation_errors_191", - "community": 486, + "community": 229, "norm_label": "errors" }, { @@ -65077,9 +65087,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L310", + "source_location": "L311", "_origin": "ast", - "id": "api_representation_response_200_310", + "id": "api_representation_response_200_311", "community": 548, "norm_label": "response `200`" }, @@ -65087,9 +65097,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L313", + "source_location": "L314", "_origin": "ast", - "id": "api_representation_errors_313", + "id": "api_representation_errors_314", "community": 548, "norm_label": "errors" }, @@ -65097,7 +65107,7 @@ "label": "DELETE `/api/v1/representation/iban/{id}`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L325", + "source_location": "L326", "_origin": "ast", "id": "api_representation_delete_api_v1_representation_iban_id", "community": 297, @@ -65107,9 +65117,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L329", + "source_location": "L330", "_origin": "ast", - "id": "api_representation_response_200_329", + "id": "api_representation_response_200_330", "community": 297, "norm_label": "response `200`" }, @@ -65117,7 +65127,7 @@ "label": "POST `/api/v1/representation/doctor`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L334", + "source_location": "L335", "_origin": "ast", "id": "api_representation_post_api_v1_representation_doctor", "community": 549, @@ -65127,9 +65137,9 @@ "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L338", + "source_location": "L339", "_origin": "ast", - "id": "api_representation_request_body_338", + "id": "api_representation_request_body_339", "community": 549, "norm_label": "request body" }, @@ -65137,9 +65147,9 @@ "label": "Response `201`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L349", + "source_location": "L350", "_origin": "ast", - "id": "api_representation_response_201_349", + "id": "api_representation_response_201_350", "community": 549, "norm_label": "response `201`" }, @@ -65147,9 +65157,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L353", + "source_location": "L354", "_origin": "ast", - "id": "api_representation_errors_353", + "id": "api_representation_errors_354", "community": 549, "norm_label": "errors" }, @@ -65157,7 +65167,7 @@ "label": "POST `/api/v1/representation/clinic`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L362", + "source_location": "L363", "_origin": "ast", "id": "api_representation_post_api_v1_representation_clinic", "community": 550, @@ -65167,9 +65177,9 @@ "label": "Request Body", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L366", + "source_location": "L367", "_origin": "ast", - "id": "api_representation_request_body_366", + "id": "api_representation_request_body_367", "community": 550, "norm_label": "request body" }, @@ -65177,9 +65187,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L376", + "source_location": "L377", "_origin": "ast", - "id": "api_representation_response_200_376", + "id": "api_representation_response_200_377", "community": 550, "norm_label": "response `200`" }, @@ -65187,9 +65197,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L380", + "source_location": "L381", "_origin": "ast", - "id": "api_representation_errors_380", + "id": "api_representation_errors_381", "community": 550, "norm_label": "errors" }, @@ -65197,7 +65207,7 @@ "label": "GET `/api/v1/representation/appointments`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L388", + "source_location": "L389", "_origin": "ast", "id": "api_representation_get_api_v1_representation_appointments", "community": 551, @@ -65207,9 +65217,9 @@ "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L392", + "source_location": "L393", "_origin": "ast", - "id": "api_representation_query_parameters_392", + "id": "api_representation_query_parameters_393", "community": 551, "norm_label": "query parameters" }, @@ -65217,9 +65227,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L401", + "source_location": "L402", "_origin": "ast", - "id": "api_representation_response_200_401", + "id": "api_representation_response_200_402", "community": 551, "norm_label": "response `200`" }, @@ -65227,9 +65237,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L424", + "source_location": "L425", "_origin": "ast", - "id": "api_representation_errors_424", + "id": "api_representation_errors_425", "community": 551, "norm_label": "errors" }, @@ -65237,7 +65247,7 @@ "label": "GET `/api/v1/representation/doctors`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L431", + "source_location": "L432", "_origin": "ast", "id": "api_representation_get_api_v1_representation_doctors", "community": 552, @@ -65247,9 +65257,9 @@ "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L437", + "source_location": "L438", "_origin": "ast", - "id": "api_representation_query_parameters_437", + "id": "api_representation_query_parameters_438", "community": 552, "norm_label": "query parameters" }, @@ -65257,9 +65267,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L444", + "source_location": "L445", "_origin": "ast", - "id": "api_representation_response_200_444", + "id": "api_representation_response_200_445", "community": 552, "norm_label": "response `200`" }, @@ -65267,9 +65277,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L459", + "source_location": "L460", "_origin": "ast", - "id": "api_representation_errors_459", + "id": "api_representation_errors_460", "community": 552, "norm_label": "errors" }, @@ -65277,7 +65287,7 @@ "label": "GET `/api/v1/representation/doctors/stats`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L466", + "source_location": "L467", "_origin": "ast", "id": "api_representation_get_api_v1_representation_doctors_stats", "community": 297, @@ -65287,9 +65297,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L472", + "source_location": "L473", "_origin": "ast", - "id": "api_representation_response_200_472", + "id": "api_representation_response_200_473", "community": 297, "norm_label": "response `200`" }, @@ -65297,9 +65307,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L479", + "source_location": "L480", "_origin": "ast", - "id": "api_representation_errors_479", + "id": "api_representation_errors_480", "community": 297, "norm_label": "errors" }, @@ -65307,7 +65317,7 @@ "label": "POST `/api/v1/representation/doctors/{uuid}/status`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L486", + "source_location": "L487", "_origin": "ast", "id": "api_representation_post_api_v1_representation_doctors_uuid_status", "community": 553, @@ -65317,9 +65327,9 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L492", + "source_location": "L493", "_origin": "ast", - "id": "api_representation_path_parameters_492", + "id": "api_representation_path_parameters_493", "community": 553, "norm_label": "path parameters" }, @@ -65327,9 +65337,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L497", + "source_location": "L498", "_origin": "ast", - "id": "api_representation_response_200_497", + "id": "api_representation_response_200_498", "community": 553, "norm_label": "response `200`" }, @@ -65337,9 +65347,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L501", + "source_location": "L502", "_origin": "ast", - "id": "api_representation_errors_501", + "id": "api_representation_errors_502", "community": 553, "norm_label": "errors" }, @@ -65347,7 +65357,7 @@ "label": "GET `/api/v1/representation/clinics`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L508", + "source_location": "L509", "_origin": "ast", "id": "api_representation_get_api_v1_representation_clinics", "community": 554, @@ -65357,9 +65367,9 @@ "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L514", + "source_location": "L515", "_origin": "ast", - "id": "api_representation_query_parameters_514", + "id": "api_representation_query_parameters_515", "community": 554, "norm_label": "query parameters" }, @@ -65367,9 +65377,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L521", + "source_location": "L522", "_origin": "ast", - "id": "api_representation_response_200_521", + "id": "api_representation_response_200_522", "community": 554, "norm_label": "response `200`" }, @@ -65377,9 +65387,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L535", + "source_location": "L536", "_origin": "ast", - "id": "api_representation_errors_535", + "id": "api_representation_errors_536", "community": 554, "norm_label": "errors" }, @@ -65387,7 +65397,7 @@ "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f\u060c \u0639\u0645\u0644\u06a9\u0631\u062f \u0648 \u0645\u0627\u0644\u06cc\u0650 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L542", + "source_location": "L543", "_origin": "ast", "id": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "community": 487, @@ -65397,7 +65407,7 @@ "label": "GET `/api/v1/representation/dashboard/summary`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L546", + "source_location": "L547", "_origin": "ast", "id": "api_representation_get_api_v1_representation_dashboard_summary", "community": 487, @@ -65407,9 +65417,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L565", + "source_location": "L566", "_origin": "ast", - "id": "api_representation_errors_565", + "id": "api_representation_errors_566", "community": 487, "norm_label": "errors" }, @@ -65417,7 +65427,7 @@ "label": "GET `/api/v1/representation/doctors/performance`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L570", + "source_location": "L571", "_origin": "ast", "id": "api_representation_get_api_v1_representation_doctors_performance", "community": 487, @@ -65427,7 +65437,7 @@ "label": "GET `/api/v1/representation/finance/report`", "file_type": "document", "source_file": "docs/api/representation.md", - "source_location": "L591", + "source_location": "L592", "_origin": "ast", "id": "api_representation_get_api_v1_representation_finance_report", "community": 487, @@ -77291,9 +77301,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "admin_app_allowed_roles", - "confidence_score": 1.0 + "target": "admin_app_allowed_roles" }, { "relation": "contains", @@ -77301,9 +77311,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "admin_app_app", - "confidence_score": 1.0 + "target": "admin_app_app" }, { "relation": "contains", @@ -77311,9 +77321,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "admin_app_privateroute", - "confidence_score": 1.0 + "target": "admin_app_privateroute" }, { "relation": "contains", @@ -77321,9 +77331,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "admin_app_publicroute", - "confidence_score": 1.0 + "target": "admin_app_publicroute" }, { "relation": "contains", @@ -77331,9 +77341,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "admin_app_roleroute", - "confidence_score": 1.0 + "target": "admin_app_roleroute" }, { "relation": "imports_from", @@ -77342,9 +77352,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "layout_adminlayout", - "confidence_score": 1.0 + "target": "layout_adminlayout" }, { "relation": "imports", @@ -77353,9 +77363,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "layout_adminlayout_adminlayout", - "confidence_score": 1.0 + "target": "layout_adminlayout_adminlayout" }, { "relation": "imports_from", @@ -77364,9 +77374,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_adminsubscriptionpage", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage" }, { "relation": "imports_from", @@ -77375,9 +77385,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_appointmentdetailpage", - "confidence_score": 1.0 + "target": "pages_appointmentdetailpage" }, { "relation": "imports_from", @@ -77386,9 +77396,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_appointmentspage", - "confidence_score": 1.0 + "target": "pages_appointmentspage" }, { "relation": "imports_from", @@ -77397,9 +77407,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_blogformpage", - "confidence_score": 1.0 + "target": "pages_blogformpage" }, { "relation": "imports_from", @@ -77408,9 +77418,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_blogspage", - "confidence_score": 1.0 + "target": "pages_blogspage" }, { "relation": "imports_from", @@ -77419,9 +77429,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_categoriespage", - "confidence_score": 1.0 + "target": "pages_categoriespage" }, { "relation": "imports_from", @@ -77430,9 +77440,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_claimspage", - "confidence_score": 1.0 + "target": "pages_claimspage" }, { "relation": "imports_from", @@ -77441,9 +77451,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_clinicdetailpage", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage" }, { "relation": "imports_from", @@ -77452,9 +77462,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_clinicformpage", - "confidence_score": 1.0 + "target": "pages_clinicformpage" }, { "relation": "imports_from", @@ -77463,9 +77473,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_clinicservicespage", - "confidence_score": 1.0 + "target": "pages_clinicservicespage" }, { "relation": "imports_from", @@ -77474,9 +77484,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_clinicspage", - "confidence_score": 1.0 + "target": "pages_clinicspage" }, { "relation": "imports_from", @@ -77485,9 +77495,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_commentspage", - "confidence_score": 1.0 + "target": "pages_commentspage" }, { "relation": "imports_from", @@ -77496,9 +77506,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_dashboardpage", - "confidence_score": 1.0 + "target": "pages_dashboardpage" }, { "relation": "imports_from", @@ -77507,9 +77517,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_doctordetailpage", - "confidence_score": 1.0 + "target": "pages_doctordetailpage" }, { "relation": "imports_from", @@ -77518,9 +77528,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_doctorformpage", - "confidence_score": 1.0 + "target": "pages_doctorformpage" }, { "relation": "imports_from", @@ -77529,9 +77539,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_doctorprofilepage", - "confidence_score": 1.0 + "target": "pages_doctorprofilepage" }, { "relation": "imports", @@ -77540,9 +77550,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_doctorprofilepage_doctorprofilepage", - "confidence_score": 1.0 + "target": "pages_doctorprofilepage_doctorprofilepage" }, { "relation": "imports_from", @@ -77551,9 +77561,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_doctorspage", - "confidence_score": 1.0 + "target": "pages_doctorspage" }, { "relation": "imports_from", @@ -77562,9 +77572,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_financialreportpage", - "confidence_score": 1.0 + "target": "pages_financialreportpage" }, { "relation": "imports_from", @@ -77573,9 +77583,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_insurancepricingpage", - "confidence_score": 1.0 + "target": "pages_insurancepricingpage" }, { "relation": "imports", @@ -77584,9 +77594,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_insurancepricingpage_insurancepricingpage", - "confidence_score": 1.0 + "target": "pages_insurancepricingpage_insurancepricingpage" }, { "relation": "imports_from", @@ -77595,9 +77605,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_loginpage", - "confidence_score": 1.0 + "target": "pages_loginpage" }, { "relation": "imports_from", @@ -77606,9 +77616,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_myclinicpage", - "confidence_score": 1.0 + "target": "pages_myclinicpage" }, { "relation": "imports_from", @@ -77617,9 +77627,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_myfinancialpage", - "confidence_score": 1.0 + "target": "pages_myfinancialpage" }, { "relation": "imports_from", @@ -77628,9 +77638,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_mypatientspage", - "confidence_score": 1.0 + "target": "pages_mypatientspage" }, { "relation": "imports_from", @@ -77639,9 +77649,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_mysecretariespage", - "confidence_score": 1.0 + "target": "pages_mysecretariespage" }, { "relation": "imports_from", @@ -77650,9 +77660,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_newsessionpage", - "confidence_score": 1.0 + "target": "pages_newsessionpage" }, { "relation": "imports_from", @@ -77661,9 +77671,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_paymentdetailpage", - "confidence_score": 1.0 + "target": "pages_paymentdetailpage" }, { "relation": "imports_from", @@ -77672,9 +77682,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_paymentspage", - "confidence_score": 1.0 + "target": "pages_paymentspage" }, { "relation": "imports_from", @@ -77683,9 +77693,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_preregistrationspage", - "confidence_score": 1.0 + "target": "pages_preregistrationspage" }, { "relation": "imports_from", @@ -77694,9 +77704,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_ratingspage", - "confidence_score": 1.0 + "target": "pages_ratingspage" }, { "relation": "imports_from", @@ -77705,9 +77715,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_representationdetailpage", - "confidence_score": 1.0 + "target": "pages_representationdetailpage" }, { "relation": "imports_from", @@ -77716,9 +77726,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_representationfinancepage", - "confidence_score": 1.0 + "target": "pages_representationfinancepage" }, { "relation": "imports_from", @@ -77727,9 +77737,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_representationprofilepage", - "confidence_score": 1.0 + "target": "pages_representationprofilepage" }, { "relation": "imports_from", @@ -77738,9 +77748,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_representationsettlementpage", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage" }, { "relation": "imports_from", @@ -77749,9 +77759,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_representationspage", - "confidence_score": 1.0 + "target": "pages_representationspage" }, { "relation": "imports_from", @@ -77760,9 +77770,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_secretariespage", - "confidence_score": 1.0 + "target": "pages_secretariespage" }, { "relation": "imports_from", @@ -77771,9 +77781,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_selectcontextpage", - "confidence_score": 1.0 + "target": "pages_selectcontextpage" }, { "relation": "imports_from", @@ -77782,9 +77792,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_settingspage", - "confidence_score": 1.0 + "target": "pages_settingspage" }, { "relation": "imports_from", @@ -77793,9 +77803,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_settlementdetailpage", - "confidence_score": 1.0 + "target": "pages_settlementdetailpage" }, { "relation": "imports_from", @@ -77804,9 +77814,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_settlementspage", - "confidence_score": 1.0 + "target": "pages_settlementspage" }, { "relation": "imports_from", @@ -77815,9 +77825,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_smspage", - "confidence_score": 1.0 + "target": "pages_smspage" }, { "relation": "imports_from", @@ -77826,9 +77836,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_smswalletpage", - "confidence_score": 1.0 + "target": "pages_smswalletpage" }, { "relation": "imports_from", @@ -77837,9 +77847,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_staffpage", - "confidence_score": 1.0 + "target": "pages_staffpage" }, { "relation": "imports_from", @@ -77848,9 +77858,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_subscriptionpage", - "confidence_score": 1.0 + "target": "pages_subscriptionpage" }, { "relation": "imports_from", @@ -77859,9 +77869,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_userdetailpage", - "confidence_score": 1.0 + "target": "pages_userdetailpage" }, { "relation": "imports_from", @@ -77870,9 +77880,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "pages_userspage", - "confidence_score": 1.0 + "target": "pages_userspage" }, { "relation": "imports_from", @@ -77881,9 +77891,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -77892,9 +77902,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -77903,9 +77913,9 @@ "source_file": "assets/admin/App.tsx", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_app", - "target": "ui_pwainstallbanner", - "confidence_score": 1.0 + "target": "ui_pwainstallbanner" }, { "relation": "imports_from", @@ -77914,9 +77924,9 @@ "source_file": "assets/admin/index.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_index", - "target": "admin_app", - "confidence_score": 1.0 + "target": "admin_app" }, { "relation": "calls", @@ -77957,9 +77967,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "components_freevisitprice_freevisitprice", - "confidence_score": 1.0 + "target": "components_freevisitprice_freevisitprice" }, { "relation": "contains", @@ -77967,9 +77977,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "components_freevisitprice_pricing", - "confidence_score": 1.0 + "target": "components_freevisitprice_pricing" }, { "relation": "imports_from", @@ -77978,9 +77988,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -77989,9 +77999,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports_from", @@ -78000,9 +78010,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -78011,9 +78021,9 @@ "source_file": "assets/admin/components/FreeVisitPrice.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_freevisitprice", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports_from", @@ -78022,9 +78032,9 @@ "source_file": "assets/admin/pages/InsurancePricingPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_insurancepricingpage", - "target": "components_freevisitprice", - "confidence_score": 1.0 + "target": "components_freevisitprice" }, { "relation": "calls", @@ -78043,9 +78053,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_contractcard", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_contractcard" }, { "relation": "contains", @@ -78053,9 +78063,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_coveragerow", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_coveragerow" }, { "relation": "contains", @@ -78063,9 +78073,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_draft", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_draft" }, { "relation": "contains", @@ -78073,9 +78083,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_kind", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_kind" }, { "relation": "contains", @@ -78083,9 +78093,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_serviceinsurancemodal", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_serviceinsurancemodal" }, { "relation": "contains", @@ -78093,9 +78103,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "components_serviceinsurancemodal_tenantinsurance", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal_tenantinsurance" }, { "relation": "imports_from", @@ -78104,9 +78114,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -78115,9 +78125,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports_from", @@ -78126,9 +78136,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -78137,9 +78147,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "imports_from", @@ -78148,9 +78158,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -78159,9 +78169,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "ui_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput" }, { "relation": "imports", @@ -78170,9 +78180,9 @@ "source_file": "assets/admin/components/ServiceInsuranceModal.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_serviceinsurancemodal", - "target": "ui_priceinput_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput_priceinput" }, { "relation": "imports_from", @@ -78181,9 +78191,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "components_serviceinsurancemodal", - "confidence_score": 1.0 + "target": "components_serviceinsurancemodal" }, { "relation": "contains", @@ -78191,9 +78201,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "components_servicetariffmodal_servicetariffmodal", - "confidence_score": 1.0 + "target": "components_servicetariffmodal_servicetariffmodal" }, { "relation": "contains", @@ -78201,9 +78211,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "components_servicetariffmodal_tariffresponse", - "confidence_score": 1.0 + "target": "components_servicetariffmodal_tariffresponse" }, { "relation": "contains", @@ -78211,9 +78221,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "components_servicetariffmodal_tariffrow", - "confidence_score": 1.0 + "target": "components_servicetariffmodal_tariffrow" }, { "relation": "imports_from", @@ -78222,9 +78232,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -78233,9 +78243,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports_from", @@ -78244,9 +78254,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -78255,9 +78265,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "imports", @@ -78266,9 +78276,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports_from", @@ -78277,9 +78287,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -78288,9 +78298,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "imports_from", @@ -78299,9 +78309,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -78310,9 +78320,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "ui_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput" }, { "relation": "imports", @@ -78321,9 +78331,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "ui_priceinput_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput_priceinput" }, { "relation": "imports_from", @@ -78332,9 +78342,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports", @@ -78343,9 +78353,9 @@ "source_file": "assets/admin/components/ServiceTariffModal.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "components_servicetariffmodal", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports_from", @@ -78354,9 +78364,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "components_servicetariffmodal", - "confidence_score": 1.0 + "target": "components_servicetariffmodal" }, { "relation": "calls", @@ -78375,9 +78385,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "components_tenantinsurancecontracts_contract", - "confidence_score": 1.0 + "target": "components_tenantinsurancecontracts_contract" }, { "relation": "contains", @@ -78385,9 +78395,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "components_tenantinsurancecontracts_insuranceoption", - "confidence_score": 1.0 + "target": "components_tenantinsurancecontracts_insuranceoption" }, { "relation": "contains", @@ -78395,9 +78405,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "components_tenantinsurancecontracts_kind_label", - "confidence_score": 1.0 + "target": "components_tenantinsurancecontracts_kind_label" }, { "relation": "contains", @@ -78405,9 +78415,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "components_tenantinsurancecontracts_tenantinsurancecontracts", - "confidence_score": 1.0 + "target": "components_tenantinsurancecontracts_tenantinsurancecontracts" }, { "relation": "imports_from", @@ -78416,9 +78426,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -78427,9 +78437,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports_from", @@ -78438,9 +78448,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -78449,9 +78459,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports_from", @@ -78460,9 +78470,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports", @@ -78471,9 +78481,9 @@ "source_file": "assets/admin/components/TenantInsuranceContracts.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "components_tenantinsurancecontracts", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports_from", @@ -78482,9 +78492,9 @@ "source_file": "assets/admin/pages/InsurancePricingPage.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_insurancepricingpage", - "target": "components_tenantinsurancecontracts", - "confidence_score": 1.0 + "target": "components_tenantinsurancecontracts" }, { "relation": "contains", @@ -78492,9 +78502,9 @@ "source_file": "assets/admin/components/layout/AdminLayout.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_adminlayout", - "target": "layout_adminlayout_adminlayout", - "confidence_score": 1.0 + "target": "layout_adminlayout_adminlayout" }, { "relation": "imports_from", @@ -78503,9 +78513,9 @@ "source_file": "assets/admin/components/layout/AdminLayout.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_adminlayout", - "target": "layout_sidebar", - "confidence_score": 1.0 + "target": "layout_sidebar" }, { "relation": "imports_from", @@ -78514,9 +78524,9 @@ "source_file": "assets/admin/components/layout/AdminLayout.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_adminlayout", - "target": "layout_topbar", - "confidence_score": 1.0 + "target": "layout_topbar" }, { "relation": "imports_from", @@ -78525,9 +78535,9 @@ "source_file": "assets/admin/components/layout/AdminLayout.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_adminlayout", - "target": "stores_uistore", - "confidence_score": 1.0 + "target": "stores_uistore" }, { "relation": "imports", @@ -78536,9 +78546,9 @@ "source_file": "assets/admin/components/layout/AdminLayout.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_adminlayout", - "target": "stores_uistore_useuistore", - "confidence_score": 1.0 + "target": "stores_uistore_useuistore" }, { "relation": "calls", @@ -78558,9 +78568,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "hooks_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription" }, { "relation": "imports", @@ -78569,9 +78579,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "hooks_usesubscription_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription_usesubscription" }, { "relation": "contains", @@ -78579,9 +78589,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L426", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_avatarbg", - "confidence_score": 1.0 + "target": "layout_sidebar_avatarbg" }, { "relation": "contains", @@ -78589,9 +78599,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_buildsections", - "confidence_score": 1.0 + "target": "layout_sidebar_buildsections" }, { "relation": "contains", @@ -78599,9 +78609,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L424", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_hues", - "confidence_score": 1.0 + "target": "layout_sidebar_hues" }, { "relation": "contains", @@ -78609,9 +78619,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L431", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_props", - "confidence_score": 1.0 + "target": "layout_sidebar_props" }, { "relation": "contains", @@ -78619,9 +78629,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_role_labels", - "confidence_score": 1.0 + "target": "layout_sidebar_role_labels" }, { "relation": "contains", @@ -78629,9 +78639,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_section", - "confidence_score": 1.0 + "target": "layout_sidebar_section" }, { "relation": "contains", @@ -78639,9 +78649,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_sectionitem", - "confidence_score": 1.0 + "target": "layout_sidebar_sectionitem" }, { "relation": "contains", @@ -78649,9 +78659,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L436", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "layout_sidebar_sidebar", - "confidence_score": 1.0 + "target": "layout_sidebar_sidebar" }, { "relation": "imports_from", @@ -78660,9 +78670,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -78671,9 +78681,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -78682,9 +78692,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "stores_uistore", - "confidence_score": 1.0 + "target": "stores_uistore" }, { "relation": "imports", @@ -78693,9 +78703,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar", - "target": "stores_uistore_useuistore", - "confidence_score": 1.0 + "target": "stores_uistore_useuistore" }, { "relation": "calls", @@ -78704,9 +78714,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar_sidebar", - "target": "layout_sidebar_buildsections", - "confidence_score": 1.0 + "target": "layout_sidebar_buildsections" }, { "relation": "calls", @@ -78715,9 +78725,9 @@ "source_file": "assets/admin/components/layout/Sidebar.tsx", "source_location": "L550", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_sidebar_sidebar", - "target": "layout_sidebar_avatarbg", - "confidence_score": 1.0 + "target": "layout_sidebar_avatarbg" }, { "relation": "calls", @@ -78758,9 +78768,9 @@ "source_file": "assets/admin/components/layout/Topbar.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_topbar", - "target": "layout_topbar_topbar", - "confidence_score": 1.0 + "target": "layout_topbar_topbar" }, { "relation": "imports_from", @@ -78769,9 +78779,9 @@ "source_file": "assets/admin/components/layout/Topbar.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_topbar", - "target": "stores_uistore", - "confidence_score": 1.0 + "target": "stores_uistore" }, { "relation": "imports", @@ -78780,9 +78790,9 @@ "source_file": "assets/admin/components/layout/Topbar.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_topbar", - "target": "stores_uistore_brandhue", - "confidence_score": 1.0 + "target": "stores_uistore_brandhue" }, { "relation": "imports", @@ -78791,9 +78801,9 @@ "source_file": "assets/admin/components/layout/Topbar.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_topbar", - "target": "stores_uistore_hues", - "confidence_score": 1.0 + "target": "stores_uistore_hues" }, { "relation": "imports", @@ -78802,9 +78812,9 @@ "source_file": "assets/admin/components/layout/Topbar.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "layout_topbar", - "target": "stores_uistore_useuistore", - "confidence_score": 1.0 + "target": "stores_uistore_useuistore" }, { "relation": "calls", @@ -78824,9 +78834,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "ui_appointmentstatusdropdown", - "confidence_score": 1.0 + "target": "ui_appointmentstatusdropdown" }, { "relation": "imports_from", @@ -78835,9 +78845,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -78846,9 +78856,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "contains", @@ -78856,9 +78866,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "ui_appointmentstatusdropdown_appointmentstatusdropdown", - "confidence_score": 1.0 + "target": "ui_appointmentstatusdropdown_appointmentstatusdropdown" }, { "relation": "contains", @@ -78866,9 +78876,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "ui_appointmentstatusdropdown_props", - "confidence_score": 1.0 + "target": "ui_appointmentstatusdropdown_props" }, { "relation": "contains", @@ -78876,9 +78886,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "ui_appointmentstatusdropdown_status_meta", - "confidence_score": 1.0 + "target": "ui_appointmentstatusdropdown_status_meta" }, { "relation": "contains", @@ -78886,9 +78896,9 @@ "source_file": "assets/admin/components/ui/AppointmentStatusDropdown.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_appointmentstatusdropdown", - "target": "ui_appointmentstatusdropdown_transitions", - "confidence_score": 1.0 + "target": "ui_appointmentstatusdropdown_transitions" }, { "relation": "imports_from", @@ -78897,9 +78907,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78908,9 +78918,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78919,9 +78929,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78930,9 +78940,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78941,9 +78951,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78952,9 +78962,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78963,9 +78973,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78974,9 +78984,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78985,9 +78995,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -78996,9 +79006,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79007,9 +79017,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79018,9 +79028,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79029,9 +79039,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79040,9 +79050,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79051,9 +79061,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79062,9 +79072,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79073,9 +79083,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79084,9 +79094,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79095,9 +79105,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79106,9 +79116,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79117,9 +79127,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "imports_from", @@ -79128,9 +79138,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "ui_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog" }, { "relation": "contains", @@ -79138,9 +79148,9 @@ "source_file": "assets/admin/components/ui/ConfirmDialog.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_confirmdialog", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "contains", @@ -79148,9 +79158,9 @@ "source_file": "assets/admin/components/ui/ConfirmDialog.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_confirmdialog", - "target": "ui_confirmdialog_props", - "confidence_score": 1.0 + "target": "ui_confirmdialog_props" }, { "relation": "imports", @@ -79159,9 +79169,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79170,9 +79180,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79181,9 +79191,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79192,9 +79202,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79203,9 +79213,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79214,9 +79224,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79225,9 +79235,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79236,9 +79246,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79247,9 +79257,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79258,9 +79268,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79269,9 +79279,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79280,9 +79290,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79291,9 +79301,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79302,9 +79312,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79313,9 +79323,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79324,9 +79334,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79335,9 +79345,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79346,9 +79356,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79357,9 +79367,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79368,9 +79378,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79379,9 +79389,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports", @@ -79390,9 +79400,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "ui_confirmdialog_confirmdialog", - "confidence_score": 1.0 + "target": "ui_confirmdialog_confirmdialog" }, { "relation": "imports_from", @@ -79401,9 +79411,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79412,9 +79422,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79423,9 +79433,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79434,9 +79444,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79445,9 +79455,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79456,9 +79466,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79467,9 +79477,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79478,9 +79488,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79489,9 +79499,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79500,9 +79510,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79511,9 +79521,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "imports_from", @@ -79522,9 +79532,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_datatable", - "confidence_score": 1.0 + "target": "ui_datatable" }, { "relation": "contains", @@ -79532,9 +79542,9 @@ "source_file": "assets/admin/components/ui/DataTable.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_datatable", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "contains", @@ -79542,9 +79552,9 @@ "source_file": "assets/admin/components/ui/DataTable.tsx", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_datatable", - "target": "ui_datatable_datatable", - "confidence_score": 1.0 + "target": "ui_datatable_datatable" }, { "relation": "contains", @@ -79552,9 +79562,9 @@ "source_file": "assets/admin/components/ui/DataTable.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_datatable", - "target": "ui_datatable_props", - "confidence_score": 1.0 + "target": "ui_datatable_props" }, { "relation": "contains", @@ -79562,9 +79572,9 @@ "source_file": "assets/admin/components/ui/DataTable.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_datatable", - "target": "ui_datatable_skeletonrow", - "confidence_score": 1.0 + "target": "ui_datatable_skeletonrow" }, { "relation": "imports", @@ -79573,9 +79583,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79584,9 +79594,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79595,9 +79605,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79606,9 +79616,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79617,9 +79627,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79628,9 +79638,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79639,9 +79649,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79650,9 +79660,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79661,9 +79671,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79672,9 +79682,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79683,9 +79693,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports", @@ -79694,9 +79704,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_datatable_column", - "confidence_score": 1.0 + "target": "ui_datatable_column" }, { "relation": "imports_from", @@ -79705,9 +79715,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate" }, { "relation": "imports_from", @@ -79716,9 +79726,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate" }, { "relation": "imports_from", @@ -79727,9 +79737,9 @@ "source_file": "assets/admin/pages/InsurancePricingPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_insurancepricingpage", - "target": "ui_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate" }, { "relation": "imports_from", @@ -79738,9 +79748,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate" }, { "relation": "imports_from", @@ -79749,9 +79759,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate" }, { "relation": "imports_from", @@ -79760,9 +79770,9 @@ "source_file": "assets/admin/components/ui/FeatureGate.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_featuregate", - "target": "hooks_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription" }, { "relation": "imports", @@ -79771,9 +79781,9 @@ "source_file": "assets/admin/components/ui/FeatureGate.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_featuregate", - "target": "hooks_usesubscription_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription_usesubscription" }, { "relation": "contains", @@ -79781,9 +79791,9 @@ "source_file": "assets/admin/components/ui/FeatureGate.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_featuregate", - "target": "ui_featuregate_featuregate", - "confidence_score": 1.0 + "target": "ui_featuregate_featuregate" }, { "relation": "contains", @@ -79791,9 +79801,9 @@ "source_file": "assets/admin/components/ui/FeatureGate.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_featuregate", - "target": "ui_featuregate_featuregateprops", - "confidence_score": 1.0 + "target": "ui_featuregate_featuregateprops" }, { "relation": "calls", @@ -79813,9 +79823,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "ui_invitedoctormodal", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal" }, { "relation": "imports_from", @@ -79824,9 +79834,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "ui_invitedoctormodal", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal" }, { "relation": "imports_from", @@ -79835,9 +79845,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -79846,9 +79856,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -79857,9 +79867,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports_from", @@ -79868,9 +79878,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -79879,9 +79889,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "contains", @@ -79889,9 +79899,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "ui_invitedoctormodal_invitedoctormodal", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_invitedoctormodal" }, { "relation": "contains", @@ -79899,9 +79909,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "ui_invitedoctormodal_inviteform", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_inviteform" }, { "relation": "contains", @@ -79909,9 +79919,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "ui_invitedoctormodal_inviteschema", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_inviteschema" }, { "relation": "contains", @@ -79919,9 +79929,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "ui_invitedoctormodal_props", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_props" }, { "relation": "imports_from", @@ -79930,9 +79940,9 @@ "source_file": "assets/admin/components/ui/InviteDoctorModal.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_invitedoctormodal", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports", @@ -79941,9 +79951,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "ui_invitedoctormodal_invitedoctormodal", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_invitedoctormodal" }, { "relation": "imports", @@ -79952,9 +79962,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "ui_invitedoctormodal_invitedoctormodal", - "confidence_score": 1.0 + "target": "ui_invitedoctormodal_invitedoctormodal" }, { "relation": "imports_from", @@ -79963,9 +79973,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -79974,9 +79984,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -79985,9 +79995,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -79996,9 +80006,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -80007,9 +80017,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -80018,9 +80028,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_mobileinput", - "confidence_score": 1.0 + "target": "ui_mobileinput" }, { "relation": "imports_from", @@ -80029,9 +80039,9 @@ "source_file": "assets/admin/components/ui/MobileInput.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_mobileinput", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -80040,9 +80050,9 @@ "source_file": "assets/admin/components/ui/MobileInput.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_mobileinput", - "target": "lib_utils_sanitizemobileinput", - "confidence_score": 1.0 + "target": "lib_utils_sanitizemobileinput" }, { "relation": "contains", @@ -80050,9 +80060,9 @@ "source_file": "assets/admin/components/ui/MobileInput.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_mobileinput", - "target": "ui_mobileinput_props", - "confidence_score": 1.0 + "target": "ui_mobileinput_props" }, { "relation": "imports_from", @@ -80061,9 +80071,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80072,9 +80082,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80083,9 +80093,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80094,9 +80104,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80105,9 +80115,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80116,9 +80126,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80127,9 +80137,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80138,9 +80148,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80149,9 +80159,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80160,9 +80170,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80171,9 +80181,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80182,9 +80192,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80193,9 +80203,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80204,9 +80214,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80215,9 +80225,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80226,9 +80236,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "imports_from", @@ -80237,9 +80247,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "ui_modal", - "confidence_score": 1.0 + "target": "ui_modal" }, { "relation": "contains", @@ -80247,9 +80257,9 @@ "source_file": "assets/admin/components/ui/Modal.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_modal", - "target": "ui_modal_modal", - "confidence_score": 1.0 + "target": "ui_modal_modal" }, { "relation": "contains", @@ -80257,9 +80267,9 @@ "source_file": "assets/admin/components/ui/Modal.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_modal", - "target": "ui_modal_modalsize", - "confidence_score": 1.0 + "target": "ui_modal_modalsize" }, { "relation": "contains", @@ -80267,9 +80277,9 @@ "source_file": "assets/admin/components/ui/Modal.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_modal", - "target": "ui_modal_props", - "confidence_score": 1.0 + "target": "ui_modal_props" }, { "relation": "contains", @@ -80277,9 +80287,9 @@ "source_file": "assets/admin/components/ui/Modal.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_modal", - "target": "ui_modal_sizemap", - "confidence_score": 1.0 + "target": "ui_modal_sizemap" }, { "relation": "imports_from", @@ -80288,9 +80298,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "ui_notificationmobilecard", - "confidence_score": 1.0 + "target": "ui_notificationmobilecard" }, { "relation": "imports_from", @@ -80299,9 +80309,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_notificationmobilecard", - "confidence_score": 1.0 + "target": "ui_notificationmobilecard" }, { "relation": "imports_from", @@ -80310,9 +80320,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -80321,9 +80331,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -80332,9 +80342,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports_from", @@ -80343,9 +80353,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -80354,9 +80364,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "lib_utils_sanitizemobileinput", - "confidence_score": 1.0 + "target": "lib_utils_sanitizemobileinput" }, { "relation": "contains", @@ -80364,9 +80374,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "ui_notificationmobilecard_notificationmobilecard", - "confidence_score": 1.0 + "target": "ui_notificationmobilecard_notificationmobilecard" }, { "relation": "contains", @@ -80374,9 +80384,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "ui_notificationmobilecard_notificationmobiledata", - "confidence_score": 1.0 + "target": "ui_notificationmobilecard_notificationmobiledata" }, { "relation": "contains", @@ -80384,9 +80394,9 @@ "source_file": "assets/admin/components/ui/NotificationMobileCard.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_notificationmobilecard", - "target": "ui_notificationmobilecard_props", - "confidence_score": 1.0 + "target": "ui_notificationmobilecard_props" }, { "relation": "imports_from", @@ -80395,9 +80405,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80406,9 +80416,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80417,9 +80427,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80428,9 +80438,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80439,9 +80449,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80450,9 +80460,9 @@ "source_file": "assets/admin/pages/InsurancePricingPage.tsx", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_insurancepricingpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80461,9 +80471,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80472,9 +80482,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80483,9 +80493,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80494,9 +80504,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80505,9 +80515,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80516,9 +80526,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80527,9 +80537,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "imports_from", @@ -80538,9 +80548,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader" }, { "relation": "contains", @@ -80548,9 +80558,9 @@ "source_file": "assets/admin/components/ui/PageHeader.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pageheader", - "target": "ui_pageheader_crumb", - "confidence_score": 1.0 + "target": "ui_pageheader_crumb" }, { "relation": "contains", @@ -80558,9 +80568,9 @@ "source_file": "assets/admin/components/ui/PageHeader.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pageheader", - "target": "ui_pageheader_pageheader", - "confidence_score": 1.0 + "target": "ui_pageheader_pageheader" }, { "relation": "contains", @@ -80568,9 +80578,9 @@ "source_file": "assets/admin/components/ui/PageHeader.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pageheader", - "target": "ui_pageheader_props", - "confidence_score": 1.0 + "target": "ui_pageheader_props" }, { "relation": "imports_from", @@ -80579,9 +80589,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80590,9 +80600,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80601,9 +80611,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80612,9 +80622,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80623,9 +80633,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80634,9 +80644,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80645,9 +80655,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80656,9 +80666,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80667,9 +80677,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80678,9 +80688,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80689,9 +80699,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80700,9 +80710,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80711,9 +80721,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80722,9 +80732,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80733,9 +80743,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80744,9 +80754,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80755,9 +80765,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80766,9 +80776,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "ui_pagination", - "confidence_score": 1.0 + "target": "ui_pagination" }, { "relation": "imports_from", @@ -80777,9 +80787,9 @@ "source_file": "assets/admin/components/ui/Pagination.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pagination", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -80788,9 +80798,9 @@ "source_file": "assets/admin/components/ui/Pagination.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pagination", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "contains", @@ -80798,9 +80808,9 @@ "source_file": "assets/admin/components/ui/Pagination.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pagination", - "target": "ui_pagination_pagination", - "confidence_score": 1.0 + "target": "ui_pagination_pagination" }, { "relation": "contains", @@ -80808,9 +80818,9 @@ "source_file": "assets/admin/components/ui/Pagination.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pagination", - "target": "ui_pagination_props", - "confidence_score": 1.0 + "target": "ui_pagination_props" }, { "relation": "calls", @@ -80830,9 +80840,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "ui_persiancalendar", - "confidence_score": 1.0 + "target": "ui_persiancalendar" }, { "relation": "contains", @@ -80840,9 +80850,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_jalali_months", - "confidence_score": 1.0 + "target": "ui_persiancalendar_jalali_months" }, { "relation": "contains", @@ -80850,9 +80860,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_jalalifirstweekday", - "confidence_score": 1.0 + "target": "ui_persiancalendar_jalalifirstweekday" }, { "relation": "contains", @@ -80860,9 +80870,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_jalalitogregorian", - "confidence_score": 1.0 + "target": "ui_persiancalendar_jalalitogregorian" }, { "relation": "contains", @@ -80870,9 +80880,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_navbtnstyle", - "confidence_score": 1.0 + "target": "ui_persiancalendar_navbtnstyle" }, { "relation": "contains", @@ -80880,9 +80890,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_persiancalendar", - "confidence_score": 1.0 + "target": "ui_persiancalendar_persiancalendar" }, { "relation": "contains", @@ -80890,9 +80900,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_pf", - "confidence_score": 1.0 + "target": "ui_persiancalendar_pf" }, { "relation": "contains", @@ -80900,9 +80910,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_props", - "confidence_score": 1.0 + "target": "ui_persiancalendar_props" }, { "relation": "contains", @@ -80910,9 +80920,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_tojalali", - "confidence_score": 1.0 + "target": "ui_persiancalendar_tojalali" }, { "relation": "contains", @@ -80920,9 +80930,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar", - "target": "ui_persiancalendar_week_days", - "confidence_score": 1.0 + "target": "ui_persiancalendar_week_days" }, { "relation": "imports_from", @@ -80931,9 +80941,9 @@ "source_file": "assets/admin/components/ui/PersianDatePicker.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandatepicker", - "target": "ui_persiancalendar", - "confidence_score": 1.0 + "target": "ui_persiancalendar" }, { "relation": "calls", @@ -80942,9 +80952,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar_persiancalendar", - "target": "ui_persiancalendar_tojalali", - "confidence_score": 1.0 + "target": "ui_persiancalendar_tojalali" }, { "relation": "calls", @@ -80953,9 +80963,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar_jalalifirstweekday", - "target": "ui_persiancalendar_jalalitogregorian", - "confidence_score": 1.0 + "target": "ui_persiancalendar_jalalitogregorian" }, { "relation": "calls", @@ -80964,9 +80974,9 @@ "source_file": "assets/admin/components/ui/PersianCalendar.tsx", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiancalendar_persiancalendar", - "target": "ui_persiancalendar_jalalifirstweekday", - "confidence_score": 1.0 + "target": "ui_persiancalendar_jalalifirstweekday" }, { "relation": "imports_from", @@ -80975,9 +80985,9 @@ "source_file": "assets/admin/components/ui/PersianDateInput.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandateinput", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -80986,9 +80996,9 @@ "source_file": "assets/admin/components/ui/PersianDateInput.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandateinput", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "contains", @@ -80996,9 +81006,9 @@ "source_file": "assets/admin/components/ui/PersianDateInput.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandateinput", - "target": "ui_persiandateinput_persiandateinput", - "confidence_score": 1.0 + "target": "ui_persiandateinput_persiandateinput" }, { "relation": "contains", @@ -81006,9 +81016,9 @@ "source_file": "assets/admin/components/ui/PersianDateInput.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandateinput", - "target": "ui_persiandateinput_props", - "confidence_score": 1.0 + "target": "ui_persiandateinput_props" }, { "relation": "calls", @@ -81028,9 +81038,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_persiandatepicker", - "confidence_score": 1.0 + "target": "ui_persiandatepicker" }, { "relation": "imports_from", @@ -81039,9 +81049,9 @@ "source_file": "assets/admin/components/ui/PersianDatePicker.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandatepicker", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -81050,9 +81060,9 @@ "source_file": "assets/admin/components/ui/PersianDatePicker.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandatepicker", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "contains", @@ -81060,9 +81070,9 @@ "source_file": "assets/admin/components/ui/PersianDatePicker.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandatepicker", - "target": "ui_persiandatepicker_persiandatepicker", - "confidence_score": 1.0 + "target": "ui_persiandatepicker_persiandatepicker" }, { "relation": "contains", @@ -81070,9 +81080,9 @@ "source_file": "assets/admin/components/ui/PersianDatePicker.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_persiandatepicker", - "target": "ui_persiandatepicker_props", - "confidence_score": 1.0 + "target": "ui_persiandatepicker_props" }, { "relation": "calls", @@ -81092,9 +81102,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput" }, { "relation": "contains", @@ -81102,9 +81112,9 @@ "source_file": "assets/admin/components/ui/PriceInput.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_priceinput", - "target": "ui_priceinput_formatdisplay", - "confidence_score": 1.0 + "target": "ui_priceinput_formatdisplay" }, { "relation": "contains", @@ -81112,9 +81122,9 @@ "source_file": "assets/admin/components/ui/PriceInput.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_priceinput", - "target": "ui_priceinput_persian_to_latin", - "confidence_score": 1.0 + "target": "ui_priceinput_persian_to_latin" }, { "relation": "contains", @@ -81122,9 +81132,9 @@ "source_file": "assets/admin/components/ui/PriceInput.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_priceinput", - "target": "ui_priceinput_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput_priceinput" }, { "relation": "contains", @@ -81132,9 +81142,9 @@ "source_file": "assets/admin/components/ui/PriceInput.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_priceinput", - "target": "ui_priceinput_priceinputprops", - "confidence_score": 1.0 + "target": "ui_priceinput_priceinputprops" }, { "relation": "contains", @@ -81142,9 +81152,9 @@ "source_file": "assets/admin/components/ui/PriceInput.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_priceinput", - "target": "ui_priceinput_tolatindigits", - "confidence_score": 1.0 + "target": "ui_priceinput_tolatindigits" }, { "relation": "imports", @@ -81153,9 +81163,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_priceinput_priceinput", - "confidence_score": 1.0 + "target": "ui_priceinput_priceinput" }, { "relation": "imports_from", @@ -81164,9 +81174,9 @@ "source_file": "assets/admin/components/ui/PwaInstallBanner.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwainstallbanner", - "target": "hooks_usepwainstall", - "confidence_score": 1.0 + "target": "hooks_usepwainstall" }, { "relation": "imports", @@ -81175,9 +81185,9 @@ "source_file": "assets/admin/components/ui/PwaInstallBanner.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwainstallbanner", - "target": "hooks_usepwainstall_usepwainstall", - "confidence_score": 1.0 + "target": "hooks_usepwainstall_usepwainstall" }, { "relation": "contains", @@ -81185,9 +81195,9 @@ "source_file": "assets/admin/components/ui/PwaInstallBanner.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwainstallbanner", - "target": "ui_pwainstallbanner_pwainstallbanner", - "confidence_score": 1.0 + "target": "ui_pwainstallbanner_pwainstallbanner" }, { "relation": "calls", @@ -81207,9 +81217,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "ui_pwalogincard", - "confidence_score": 1.0 + "target": "ui_pwalogincard" }, { "relation": "imports_from", @@ -81218,9 +81228,9 @@ "source_file": "assets/admin/components/ui/PwaLoginCard.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwalogincard", - "target": "hooks_usepwainstall", - "confidence_score": 1.0 + "target": "hooks_usepwainstall" }, { "relation": "imports", @@ -81229,9 +81239,9 @@ "source_file": "assets/admin/components/ui/PwaLoginCard.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwalogincard", - "target": "hooks_usepwainstall_usepwainstall", - "confidence_score": 1.0 + "target": "hooks_usepwainstall_usepwainstall" }, { "relation": "contains", @@ -81239,9 +81249,9 @@ "source_file": "assets/admin/components/ui/PwaLoginCard.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwalogincard", - "target": "ui_pwalogincard_detectios", - "confidence_score": 1.0 + "target": "ui_pwalogincard_detectios" }, { "relation": "contains", @@ -81249,9 +81259,9 @@ "source_file": "assets/admin/components/ui/PwaLoginCard.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwalogincard", - "target": "ui_pwalogincard_pwalogincard", - "confidence_score": 1.0 + "target": "ui_pwalogincard_pwalogincard" }, { "relation": "calls", @@ -81260,9 +81270,9 @@ "source_file": "assets/admin/components/ui/PwaLoginCard.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_pwalogincard_pwalogincard", - "target": "ui_pwalogincard_detectios", - "confidence_score": 1.0 + "target": "ui_pwalogincard_detectios" }, { "relation": "calls", @@ -81282,9 +81292,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81293,9 +81303,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81304,9 +81314,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81315,9 +81325,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81326,9 +81336,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81337,9 +81347,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81348,9 +81358,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81359,9 +81369,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81370,9 +81380,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81381,9 +81391,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81392,9 +81402,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81403,9 +81413,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81414,9 +81424,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81425,9 +81435,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81436,9 +81446,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81447,9 +81457,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81458,9 +81468,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "ui_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect" }, { "relation": "imports_from", @@ -81469,9 +81479,9 @@ "source_file": "assets/admin/components/ui/SearchableSelect.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_searchableselect", - "target": "stores_uistore", - "confidence_score": 1.0 + "target": "stores_uistore" }, { "relation": "imports", @@ -81480,9 +81490,9 @@ "source_file": "assets/admin/components/ui/SearchableSelect.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_searchableselect", - "target": "stores_uistore_useuistore", - "confidence_score": 1.0 + "target": "stores_uistore_useuistore" }, { "relation": "contains", @@ -81490,9 +81500,9 @@ "source_file": "assets/admin/components/ui/SearchableSelect.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_searchableselect", - "target": "ui_searchableselect_props", - "confidence_score": 1.0 + "target": "ui_searchableselect_props" }, { "relation": "contains", @@ -81500,9 +81510,9 @@ "source_file": "assets/admin/components/ui/SearchableSelect.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_searchableselect", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "contains", @@ -81510,9 +81520,9 @@ "source_file": "assets/admin/components/ui/SearchableSelect.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_searchableselect", - "target": "ui_searchableselect_selectoption", - "confidence_score": 1.0 + "target": "ui_searchableselect_selectoption" }, { "relation": "imports", @@ -81521,9 +81531,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81532,9 +81542,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81543,9 +81553,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81554,9 +81564,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81565,9 +81575,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81576,9 +81586,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81587,9 +81597,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81598,9 +81608,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81609,9 +81619,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81620,9 +81630,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81631,9 +81641,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81642,9 +81652,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81653,9 +81663,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81664,9 +81674,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81675,9 +81685,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81686,9 +81696,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "imports", @@ -81697,9 +81707,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "ui_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "ui_searchableselect_searchableselect" }, { "relation": "calls", @@ -81719,9 +81729,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "ui_statcard", - "confidence_score": 1.0 + "target": "ui_statcard" }, { "relation": "contains", @@ -81729,9 +81739,9 @@ "source_file": "assets/admin/components/ui/StatCard.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statcard", - "target": "ui_statcard_props", - "confidence_score": 1.0 + "target": "ui_statcard_props" }, { "relation": "contains", @@ -81739,9 +81749,9 @@ "source_file": "assets/admin/components/ui/StatCard.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statcard", - "target": "ui_statcard_statcard", - "confidence_score": 1.0 + "target": "ui_statcard_statcard" }, { "relation": "contains", @@ -81749,9 +81759,9 @@ "source_file": "assets/admin/components/ui/StatCard.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statcard", - "target": "ui_statcard_stattone", - "confidence_score": 1.0 + "target": "ui_statcard_stattone" }, { "relation": "contains", @@ -81759,9 +81769,9 @@ "source_file": "assets/admin/components/ui/StatCard.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statcard", - "target": "ui_statcard_tone", - "confidence_score": 1.0 + "target": "ui_statcard_tone" }, { "relation": "imports_from", @@ -81770,9 +81780,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81781,9 +81791,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81792,9 +81802,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81803,9 +81813,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81814,9 +81824,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81825,9 +81835,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81836,9 +81846,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81847,9 +81857,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81858,9 +81868,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81869,9 +81879,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81880,9 +81890,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81891,9 +81901,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge" }, { "relation": "imports_from", @@ -81902,9 +81912,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -81913,9 +81923,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "types_index_appointmentstatus", - "confidence_score": 1.0 + "target": "types_index_appointmentstatus" }, { "relation": "imports", @@ -81924,9 +81934,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "types_index_paymentstatus", - "confidence_score": 1.0 + "target": "types_index_paymentstatus" }, { "relation": "imports", @@ -81935,9 +81945,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "types_index_settlementstatus", - "confidence_score": 1.0 + "target": "types_index_settlementstatus" }, { "relation": "imports", @@ -81946,9 +81956,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "types_index_smstemplatestatus", - "confidence_score": 1.0 + "target": "types_index_smstemplatestatus" }, { "relation": "contains", @@ -81956,9 +81966,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "contains", @@ -81966,9 +81976,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_appointmentmap", - "confidence_score": 1.0 + "target": "ui_statusbadge_appointmentmap" }, { "relation": "contains", @@ -81976,9 +81986,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_badgecolor", - "confidence_score": 1.0 + "target": "ui_statusbadge_badgecolor" }, { "relation": "contains", @@ -81986,9 +81996,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_paymentmap", - "confidence_score": 1.0 + "target": "ui_statusbadge_paymentmap" }, { "relation": "contains", @@ -81996,9 +82006,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_props", - "confidence_score": 1.0 + "target": "ui_statusbadge_props" }, { "relation": "contains", @@ -82006,9 +82016,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_settlementmap", - "confidence_score": 1.0 + "target": "ui_statusbadge_settlementmap" }, { "relation": "contains", @@ -82016,9 +82026,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_smsmap", - "confidence_score": 1.0 + "target": "ui_statusbadge_smsmap" }, { "relation": "contains", @@ -82026,9 +82036,9 @@ "source_file": "assets/admin/components/ui/StatusBadge.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "ui_statusbadge", - "target": "ui_statusbadge_statusbadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_statusbadge" }, { "relation": "imports", @@ -82037,9 +82047,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "imports", @@ -82048,9 +82058,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "imports", @@ -82059,9 +82069,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "imports", @@ -82070,9 +82080,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "imports", @@ -82081,9 +82091,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "imports", @@ -82092,9 +82102,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "ui_statusbadge_activebadge", - "confidence_score": 1.0 + "target": "ui_statusbadge_activebadge" }, { "relation": "contains", @@ -82102,9 +82112,9 @@ "source_file": "assets/admin/hooks/usePaymentConfig.ts", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepaymentconfig", - "target": "hooks_usepaymentconfig_usepaymentconfig", - "confidence_score": 1.0 + "target": "hooks_usepaymentconfig_usepaymentconfig" }, { "relation": "imports_from", @@ -82113,9 +82123,9 @@ "source_file": "assets/admin/hooks/usePaymentConfig.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepaymentconfig", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -82124,9 +82134,9 @@ "source_file": "assets/admin/hooks/usePaymentConfig.ts", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepaymentconfig", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -82135,9 +82145,9 @@ "source_file": "assets/admin/hooks/usePaymentConfig.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepaymentconfig", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports_from", @@ -82146,9 +82156,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "hooks_usepaymentconfig", - "confidence_score": 1.0 + "target": "hooks_usepaymentconfig" }, { "relation": "imports_from", @@ -82157,9 +82167,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "hooks_usepaymentconfig", - "confidence_score": 1.0 + "target": "hooks_usepaymentconfig" }, { "relation": "imports", @@ -82168,9 +82178,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "hooks_usepaymentconfig_usepaymentconfig", - "confidence_score": 1.0 + "target": "hooks_usepaymentconfig_usepaymentconfig" }, { "relation": "calls", @@ -82190,9 +82200,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "hooks_usepaymentconfig_usepaymentconfig", - "confidence_score": 1.0 + "target": "hooks_usepaymentconfig_usepaymentconfig" }, { "relation": "calls", @@ -82211,9 +82221,9 @@ "source_file": "assets/admin/hooks/usePwaInstall.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepwainstall", - "target": "hooks_usepwainstall_beforeinstallpromptevent", - "confidence_score": 1.0 + "target": "hooks_usepwainstall_beforeinstallpromptevent" }, { "relation": "contains", @@ -82221,9 +82231,9 @@ "source_file": "assets/admin/hooks/usePwaInstall.ts", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usepwainstall", - "target": "hooks_usepwainstall_usepwainstall", - "confidence_score": 1.0 + "target": "hooks_usepwainstall_usepwainstall" }, { "relation": "contains", @@ -82231,9 +82241,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "hooks_usesubscription_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription_usesubscription" }, { "relation": "imports_from", @@ -82242,9 +82252,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports", @@ -82253,9 +82263,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -82264,9 +82274,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports_from", @@ -82275,9 +82285,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -82286,9 +82296,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -82297,9 +82307,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -82308,9 +82318,9 @@ "source_file": "assets/admin/hooks/useSubscription.ts", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "hooks_usesubscription", - "target": "types_index_mysubscriptiondata", - "confidence_score": 1.0 + "target": "types_index_mysubscriptiondata" }, { "relation": "imports_from", @@ -82319,9 +82329,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "hooks_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription" }, { "relation": "calls", @@ -82341,9 +82351,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "hooks_usesubscription_usesubscription", - "confidence_score": 1.0 + "target": "hooks_usesubscription_usesubscription" }, { "relation": "calls", @@ -82362,9 +82372,9 @@ "source_file": "assets/admin/index.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_index", - "target": "admin_index_queryclient", - "confidence_score": 1.0 + "target": "admin_index_queryclient" }, { "relation": "contains", @@ -82372,9 +82382,9 @@ "source_file": "assets/admin/index.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_index", - "target": "admin_index_toaststyle", - "confidence_score": 1.0 + "target": "admin_index_toaststyle" }, { "relation": "contains", @@ -82382,9 +82392,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "contains", @@ -82392,9 +82402,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_apierror", - "confidence_score": 1.0 + "target": "lib_api_apierror" }, { "relation": "contains", @@ -82402,9 +82412,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "contains", @@ -82412,9 +82422,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_gettoken", - "confidence_score": 1.0 + "target": "lib_api_gettoken" }, { "relation": "contains", @@ -82422,9 +82432,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "contains", @@ -82432,9 +82442,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_refreshonce", - "confidence_score": 1.0 + "target": "lib_api_refreshonce" }, { "relation": "contains", @@ -82442,9 +82452,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "lib_api_request", - "confidence_score": 1.0 + "target": "lib_api_request" }, { "relation": "imports_from", @@ -82453,9 +82463,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -82464,9 +82474,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -82475,9 +82485,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82486,9 +82496,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82497,9 +82507,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82508,9 +82518,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82519,9 +82529,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82530,9 +82540,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82541,9 +82551,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82552,9 +82562,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82563,9 +82573,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82574,9 +82584,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82585,9 +82595,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82596,9 +82606,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82607,9 +82617,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82618,9 +82628,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82629,9 +82639,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82640,9 +82650,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82651,9 +82661,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82662,9 +82672,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82673,9 +82683,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82684,9 +82694,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82695,9 +82705,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82706,9 +82716,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82717,9 +82727,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82728,9 +82738,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82739,9 +82749,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82750,9 +82760,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82761,9 +82771,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82772,9 +82782,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82783,9 +82793,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82794,9 +82804,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82805,9 +82815,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82816,9 +82826,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82827,9 +82837,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82838,9 +82848,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82849,9 +82859,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82860,9 +82870,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82871,9 +82881,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82882,9 +82892,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82893,9 +82903,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "imports_from", @@ -82904,9 +82914,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_api", - "confidence_score": 1.0 + "target": "lib_api" }, { "relation": "calls", @@ -82915,9 +82925,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api_request", - "target": "lib_api_gettoken", - "confidence_score": 1.0 + "target": "lib_api_gettoken" }, { "relation": "method", @@ -82925,9 +82935,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api_apierror", - "target": "lib_api_apierror_constructor", - "confidence_score": 1.0 + "target": "lib_api_apierror_constructor" }, { "relation": "imports", @@ -82936,9 +82946,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_api_apierror", - "confidence_score": 1.0 + "target": "lib_api_apierror" }, { "relation": "calls", @@ -82947,9 +82957,9 @@ "source_file": "assets/admin/lib/api.ts", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_api_request", - "target": "lib_api_refreshonce", - "confidence_score": 1.0 + "target": "lib_api_refreshonce" }, { "relation": "imports", @@ -82958,9 +82968,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -82969,9 +82979,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -82980,9 +82990,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -82991,9 +83001,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83002,9 +83012,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83013,9 +83023,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83024,9 +83034,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83035,9 +83045,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83046,9 +83056,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83057,9 +83067,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83068,9 +83078,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83079,9 +83089,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83090,9 +83100,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83101,9 +83111,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83112,9 +83122,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83123,9 +83133,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83134,9 +83144,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83145,9 +83155,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83156,9 +83166,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83167,9 +83177,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83178,9 +83188,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83189,9 +83199,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83200,9 +83210,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83211,9 +83221,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83222,9 +83232,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83233,9 +83243,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83244,9 +83254,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83255,9 +83265,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83266,9 +83276,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83277,9 +83287,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83288,9 +83298,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83299,9 +83309,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83310,9 +83320,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83321,9 +83331,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83332,9 +83342,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83343,9 +83353,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83354,9 +83364,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83365,9 +83375,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83376,9 +83386,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83387,9 +83397,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_api_api", - "confidence_score": 1.0 + "target": "lib_api_api" }, { "relation": "imports", @@ -83398,9 +83408,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83409,9 +83419,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83420,9 +83430,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83431,9 +83441,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83442,9 +83452,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83453,9 +83463,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83464,9 +83474,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83475,9 +83485,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83486,9 +83496,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83497,9 +83507,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83508,9 +83518,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83519,9 +83529,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83530,9 +83540,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83541,9 +83551,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83552,9 +83562,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83563,9 +83573,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83574,9 +83584,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83585,9 +83595,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83596,9 +83606,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83607,9 +83617,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83618,9 +83628,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83629,9 +83639,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83640,9 +83650,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83651,9 +83661,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83662,9 +83672,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83673,9 +83683,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83684,9 +83694,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83695,9 +83705,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83706,9 +83716,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83717,9 +83727,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83728,9 +83738,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83739,9 +83749,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83750,9 +83760,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83761,9 +83771,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83772,9 +83782,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_api_apiresponse", - "confidence_score": 1.0 + "target": "lib_api_apiresponse" }, { "relation": "imports", @@ -83783,9 +83793,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83794,9 +83804,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83805,9 +83815,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83816,9 +83826,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83827,9 +83837,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83838,9 +83848,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83849,9 +83859,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83860,9 +83870,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83871,9 +83881,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83882,9 +83892,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83893,9 +83903,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83904,9 +83914,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83915,9 +83925,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83926,9 +83936,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83937,9 +83947,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83948,9 +83958,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83959,9 +83969,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83970,9 +83980,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83981,9 +83991,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -83992,9 +84002,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "imports", @@ -84003,9 +84013,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_api_paginatedresponse", - "confidence_score": 1.0 + "target": "lib_api_paginatedresponse" }, { "relation": "contains", @@ -84013,9 +84023,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_cn", - "confidence_score": 1.0 + "target": "lib_utils_cn" }, { "relation": "contains", @@ -84023,9 +84033,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "contains", @@ -84033,9 +84043,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "contains", @@ -84043,9 +84053,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "contains", @@ -84053,9 +84063,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "contains", @@ -84063,9 +84073,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_iranmobileoptionalschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileoptionalschema" }, { "relation": "contains", @@ -84073,9 +84083,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "contains", @@ -84083,9 +84093,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_isvalidiranmobile", - "confidence_score": 1.0 + "target": "lib_utils_isvalidiranmobile" }, { "relation": "contains", @@ -84093,9 +84103,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_maskmobile", - "confidence_score": 1.0 + "target": "lib_utils_maskmobile" }, { "relation": "contains", @@ -84103,9 +84113,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_sanitizemobileinput", - "confidence_score": 1.0 + "target": "lib_utils_sanitizemobileinput" }, { "relation": "contains", @@ -84113,9 +84123,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_todate", - "confidence_score": 1.0 + "target": "lib_utils_todate" }, { "relation": "contains", @@ -84123,9 +84133,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "lib_utils_toenglishdigits" }, { "relation": "contains", @@ -84133,9 +84143,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils", - "target": "lib_utils_togregoriandate", - "confidence_score": 1.0 + "target": "lib_utils_togregoriandate" }, { "relation": "imports_from", @@ -84144,9 +84154,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84155,9 +84165,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84166,9 +84176,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84177,9 +84187,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84188,9 +84198,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84199,9 +84209,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84210,9 +84220,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84221,9 +84231,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84232,9 +84242,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84243,9 +84253,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84254,9 +84264,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84265,9 +84275,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84276,9 +84286,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84287,9 +84297,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84298,9 +84308,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84309,9 +84319,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84320,9 +84330,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84331,9 +84341,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84342,9 +84352,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84353,9 +84363,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84364,9 +84374,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84375,9 +84385,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84386,9 +84396,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84397,9 +84407,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84408,9 +84418,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84419,9 +84429,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84430,9 +84440,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84441,9 +84451,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84452,9 +84462,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84463,9 +84473,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84474,9 +84484,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84485,9 +84495,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84496,9 +84506,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84507,9 +84517,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84518,9 +84528,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84529,9 +84539,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84540,9 +84550,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports_from", @@ -84551,9 +84561,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_utils", - "confidence_score": 1.0 + "target": "lib_utils" }, { "relation": "imports", @@ -84562,9 +84572,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84573,9 +84583,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84584,9 +84594,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84595,9 +84605,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84639,9 +84649,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84650,9 +84660,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84672,9 +84682,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84705,9 +84715,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84716,9 +84726,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84738,9 +84748,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84749,9 +84759,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84771,9 +84781,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84793,9 +84803,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "imports", @@ -84804,9 +84814,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84826,9 +84836,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84848,9 +84858,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84870,9 +84880,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_utils_formatrial", - "confidence_score": 1.0 + "target": "lib_utils_formatrial" }, { "relation": "calls", @@ -84892,9 +84902,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "imports", @@ -84903,9 +84913,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "imports", @@ -84914,9 +84924,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -84936,9 +84946,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -84958,9 +84968,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85024,9 +85034,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85046,9 +85056,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "imports", @@ -85057,9 +85067,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85079,9 +85089,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85101,9 +85111,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85123,9 +85133,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "imports", @@ -85134,9 +85144,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85156,9 +85166,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85178,9 +85188,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_utils_formatnumber", - "confidence_score": 1.0 + "target": "lib_utils_formatnumber" }, { "relation": "calls", @@ -85189,9 +85199,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils_formatdate", - "target": "lib_utils_todate", - "confidence_score": 1.0 + "target": "lib_utils_todate" }, { "relation": "calls", @@ -85200,9 +85210,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils_formatdatetime", - "target": "lib_utils_todate", - "confidence_score": 1.0 + "target": "lib_utils_todate" }, { "relation": "imports", @@ -85211,9 +85221,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85222,9 +85232,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85244,9 +85254,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85266,9 +85276,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85277,9 +85287,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85288,9 +85298,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85299,9 +85309,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85310,9 +85320,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85321,9 +85331,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85332,9 +85342,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85354,9 +85364,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85365,9 +85375,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85376,9 +85386,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85387,9 +85397,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85398,9 +85408,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85409,9 +85419,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85431,9 +85441,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85442,9 +85452,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85453,9 +85463,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85464,9 +85474,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85475,9 +85485,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85486,9 +85496,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85497,9 +85507,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85508,9 +85518,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85530,9 +85540,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "calls", @@ -85552,9 +85562,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_utils_formatdate", - "confidence_score": 1.0 + "target": "lib_utils_formatdate" }, { "relation": "imports", @@ -85563,9 +85573,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85585,9 +85595,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "imports", @@ -85596,9 +85606,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85618,9 +85628,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85640,9 +85650,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "imports", @@ -85651,9 +85661,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85673,9 +85683,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85695,9 +85705,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "imports", @@ -85706,9 +85716,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "lib_utils_formatdatetime", - "confidence_score": 1.0 + "target": "lib_utils_formatdatetime" }, { "relation": "calls", @@ -85728,9 +85738,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "lib_utils_togregoriandate", - "confidence_score": 1.0 + "target": "lib_utils_togregoriandate" }, { "relation": "imports", @@ -85739,9 +85749,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_utils_maskmobile", - "confidence_score": 1.0 + "target": "lib_utils_maskmobile" }, { "relation": "imports", @@ -85750,9 +85760,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "lib_utils_maskmobile", - "confidence_score": 1.0 + "target": "lib_utils_maskmobile" }, { "relation": "imports", @@ -85761,9 +85771,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "lib_utils_maskmobile", - "confidence_score": 1.0 + "target": "lib_utils_maskmobile" }, { "relation": "imports", @@ -85772,9 +85782,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "lib_utils_maskmobile", - "confidence_score": 1.0 + "target": "lib_utils_maskmobile" }, { "relation": "calls", @@ -85783,9 +85793,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils_isvalidiranmobile", - "target": "lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "lib_utils_toenglishdigits" }, { "relation": "calls", @@ -85794,9 +85804,9 @@ "source_file": "assets/admin/lib/utils.ts", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "lib_utils_sanitizemobileinput", - "target": "lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "lib_utils_toenglishdigits" }, { "relation": "imports", @@ -85805,9 +85815,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "lib_utils_sanitizemobileinput", - "confidence_score": 1.0 + "target": "lib_utils_sanitizemobileinput" }, { "relation": "imports", @@ -85816,9 +85826,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "imports", @@ -85827,9 +85837,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "imports", @@ -85838,9 +85848,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "imports", @@ -85849,9 +85859,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "imports", @@ -85860,9 +85870,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "lib_utils_iranmobileschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileschema" }, { "relation": "imports", @@ -85871,9 +85881,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "lib_utils_iranmobileoptionalschema", - "confidence_score": 1.0 + "target": "lib_utils_iranmobileoptionalschema" }, { "relation": "contains", @@ -85881,9 +85891,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L431", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_adminsubscriptionpage", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_adminsubscriptionpage" }, { "relation": "contains", @@ -85891,9 +85901,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_emptyfeatures", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_emptyfeatures" }, { "relation": "contains", @@ -85901,9 +85911,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_feature_keys", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_feature_keys" }, { "relation": "contains", @@ -85911,9 +85921,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_feature_labels", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_feature_labels" }, { "relation": "contains", @@ -85921,9 +85931,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_periodform", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_periodform" }, { "relation": "contains", @@ -85931,9 +85941,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_periodschema", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_periodschema" }, { "relation": "contains", @@ -85941,9 +85951,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_plan_display", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_plan_display" }, { "relation": "contains", @@ -85951,9 +85961,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_planform", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_planform" }, { "relation": "contains", @@ -85961,9 +85971,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_planschema", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_planschema" }, { "relation": "contains", @@ -85971,9 +85981,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_planstab", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_planstab" }, { "relation": "contains", @@ -85981,9 +85991,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_reportrow", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_reportrow" }, { "relation": "contains", @@ -85991,9 +86001,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L365", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_reporttab", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_reporttab" }, { "relation": "contains", @@ -86001,9 +86011,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "pages_adminsubscriptionpage_switchtoggle", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_switchtoggle" }, { "relation": "imports_from", @@ -86012,9 +86022,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86023,9 +86033,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "types_index_subscriptionperiod", - "confidence_score": 1.0 + "target": "types_index_subscriptionperiod" }, { "relation": "imports", @@ -86034,9 +86044,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage", - "target": "types_index_subscriptionplan", - "confidence_score": 1.0 + "target": "types_index_subscriptionplan" }, { "relation": "calls", @@ -86045,9 +86055,9 @@ "source_file": "assets/admin/pages/AdminSubscriptionPage.tsx", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_adminsubscriptionpage_planstab", - "target": "pages_adminsubscriptionpage_emptyfeatures", - "confidence_score": 1.0 + "target": "pages_adminsubscriptionpage_emptyfeatures" }, { "relation": "contains", @@ -86055,9 +86065,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "pages_appointmentdetailpage_all_statuses", - "confidence_score": 1.0 + "target": "pages_appointmentdetailpage_all_statuses" }, { "relation": "contains", @@ -86065,9 +86075,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "pages_appointmentdetailpage_appointmentdetailpage", - "confidence_score": 1.0 + "target": "pages_appointmentdetailpage_appointmentdetailpage" }, { "relation": "contains", @@ -86075,9 +86085,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "pages_appointmentdetailpage_inforow", - "confidence_score": 1.0 + "target": "pages_appointmentdetailpage_inforow" }, { "relation": "imports_from", @@ -86086,9 +86096,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86097,9 +86107,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "types_index_appointment", - "confidence_score": 1.0 + "target": "types_index_appointment" }, { "relation": "imports", @@ -86108,9 +86118,9 @@ "source_file": "assets/admin/pages/AppointmentDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentdetailpage", - "target": "types_index_appointmentstatus", - "confidence_score": 1.0 + "target": "types_index_appointmentstatus" }, { "relation": "contains", @@ -86118,9 +86128,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L527", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_appointmentspage", - "confidence_score": 1.0 + "target": "pages_appointmentspage_appointmentspage" }, { "relation": "contains", @@ -86128,9 +86138,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_bookingslot", - "confidence_score": 1.0 + "target": "pages_appointmentspage_bookingslot" }, { "relation": "contains", @@ -86138,9 +86148,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_cancelledbadge", - "confidence_score": 1.0 + "target": "pages_appointmentspage_cancelledbadge" }, { "relation": "contains", @@ -86148,9 +86158,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_datenavigator", - "confidence_score": 1.0 + "target": "pages_appointmentspage_datenavigator" }, { "relation": "contains", @@ -86158,9 +86168,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_empty_arr", - "confidence_score": 1.0 + "target": "pages_appointmentspage_empty_arr" }, { "relation": "contains", @@ -86168,9 +86178,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_getpersianweekday", - "confidence_score": 1.0 + "target": "pages_appointmentspage_getpersianweekday" }, { "relation": "contains", @@ -86178,9 +86188,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_iconcancelled", - "confidence_score": 1.0 + "target": "pages_appointmentspage_iconcancelled" }, { "relation": "contains", @@ -86188,9 +86198,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_iconcompleted", - "confidence_score": 1.0 + "target": "pages_appointmentspage_iconcompleted" }, { "relation": "contains", @@ -86198,9 +86208,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_icontotal", - "confidence_score": 1.0 + "target": "pages_appointmentspage_icontotal" }, { "relation": "contains", @@ -86208,9 +86218,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_iconwaiting", - "confidence_score": 1.0 + "target": "pages_appointmentspage_iconwaiting" }, { "relation": "contains", @@ -86218,9 +86228,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_navbtnsx", - "confidence_score": 1.0 + "target": "pages_appointmentspage_navbtnsx" }, { "relation": "contains", @@ -86228,9 +86238,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L432", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_newappointmentmodal", - "confidence_score": 1.0 + "target": "pages_appointmentspage_newappointmentmodal" }, { "relation": "contains", @@ -86238,9 +86248,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L389", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_scheduleview", - "confidence_score": 1.0 + "target": "pages_appointmentspage_scheduleview" }, { "relation": "contains", @@ -86248,9 +86258,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L367", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_sessiondivider", - "confidence_score": 1.0 + "target": "pages_appointmentspage_sessiondivider" }, { "relation": "contains", @@ -86258,9 +86268,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L266", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_sessiongroup", - "confidence_score": 1.0 + "target": "pages_appointmentspage_sessiongroup" }, { "relation": "contains", @@ -86268,9 +86278,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L295", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_slotcard", - "confidence_score": 1.0 + "target": "pages_appointmentspage_slotcard" }, { "relation": "contains", @@ -86278,9 +86288,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_slotitem", - "confidence_score": 1.0 + "target": "pages_appointmentspage_slotitem" }, { "relation": "contains", @@ -86288,9 +86298,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_statsbar", - "confidence_score": 1.0 + "target": "pages_appointmentspage_statsbar" }, { "relation": "contains", @@ -86298,9 +86308,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_status_meta", - "confidence_score": 1.0 + "target": "pages_appointmentspage_status_meta" }, { "relation": "contains", @@ -86308,9 +86318,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_statusmeta", - "confidence_score": 1.0 + "target": "pages_appointmentspage_statusmeta" }, { "relation": "contains", @@ -86318,9 +86328,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_tableview", - "confidence_score": 1.0 + "target": "pages_appointmentspage_tableview" }, { "relation": "contains", @@ -86328,9 +86338,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L803", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_tabstyle", - "confidence_score": 1.0 + "target": "pages_appointmentspage_tabstyle" }, { "relation": "contains", @@ -86338,9 +86348,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L250", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_td", - "confidence_score": 1.0 + "target": "pages_appointmentspage_td" }, { "relation": "contains", @@ -86348,9 +86358,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_th", - "confidence_score": 1.0 + "target": "pages_appointmentspage_th" }, { "relation": "contains", @@ -86358,9 +86368,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_todaystats", - "confidence_score": 1.0 + "target": "pages_appointmentspage_todaystats" }, { "relation": "contains", @@ -86368,9 +86378,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "pages_appointmentspage_week_days_fa", - "confidence_score": 1.0 + "target": "pages_appointmentspage_week_days_fa" }, { "relation": "imports_from", @@ -86379,9 +86389,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -86390,9 +86400,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -86401,9 +86411,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86412,9 +86422,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage", - "target": "types_index_appointment", - "confidence_score": 1.0 + "target": "types_index_appointment" }, { "relation": "calls", @@ -86423,9 +86433,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage_cancelledbadge", - "target": "pages_appointmentspage_statusmeta", - "confidence_score": 1.0 + "target": "pages_appointmentspage_statusmeta" }, { "relation": "calls", @@ -86434,9 +86444,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L300", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage_slotcard", - "target": "pages_appointmentspage_statusmeta", - "confidence_score": 1.0 + "target": "pages_appointmentspage_statusmeta" }, { "relation": "calls", @@ -86445,9 +86455,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage_datenavigator", - "target": "pages_appointmentspage_getpersianweekday", - "confidence_score": 1.0 + "target": "pages_appointmentspage_getpersianweekday" }, { "relation": "calls", @@ -86467,9 +86477,9 @@ "source_file": "assets/admin/pages/AppointmentsPage.tsx", "source_location": "L656", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_appointmentspage_appointmentspage", - "target": "pages_appointmentspage_tabstyle", - "confidence_score": 1.0 + "target": "pages_appointmentspage_tabstyle" }, { "relation": "calls", @@ -86488,9 +86498,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "pages_blogformpage_blogformpage", - "confidence_score": 1.0 + "target": "pages_blogformpage_blogformpage" }, { "relation": "contains", @@ -86498,9 +86508,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "pages_blogformpage_formdata", - "confidence_score": 1.0 + "target": "pages_blogformpage_formdata" }, { "relation": "contains", @@ -86508,9 +86518,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "pages_blogformpage_schema", - "confidence_score": 1.0 + "target": "pages_blogformpage_schema" }, { "relation": "contains", @@ -86518,9 +86528,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "pages_blogformpage_uploadblogimage", - "confidence_score": 1.0 + "target": "pages_blogformpage_uploadblogimage" }, { "relation": "imports_from", @@ -86529,9 +86539,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -86540,9 +86550,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -86551,9 +86561,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86562,9 +86572,9 @@ "source_file": "assets/admin/pages/BlogFormPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogformpage", - "target": "types_index_blog", - "confidence_score": 1.0 + "target": "types_index_blog" }, { "relation": "contains", @@ -86572,9 +86582,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "pages_blogspage_blogspage", - "confidence_score": 1.0 + "target": "pages_blogspage_blogspage" }, { "relation": "contains", @@ -86582,9 +86592,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "pages_blogspage_status_filters", - "confidence_score": 1.0 + "target": "pages_blogspage_status_filters" }, { "relation": "imports_from", @@ -86593,9 +86603,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86604,9 +86614,9 @@ "source_file": "assets/admin/pages/BlogsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_blogspage", - "target": "types_index_blog", - "confidence_score": 1.0 + "target": "types_index_blog" }, { "relation": "contains", @@ -86614,9 +86624,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L943", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_categoriespage", - "confidence_score": 1.0 + "target": "pages_categoriespage_categoriespage" }, { "relation": "contains", @@ -86624,9 +86634,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_citiestab", - "confidence_score": 1.0 + "target": "pages_categoriespage_citiestab" }, { "relation": "contains", @@ -86634,9 +86644,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L286", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_cityform", - "confidence_score": 1.0 + "target": "pages_categoriespage_cityform" }, { "relation": "contains", @@ -86644,9 +86654,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_cityschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_cityschema" }, { "relation": "contains", @@ -86654,9 +86664,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L608", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_doctorservicestab", - "confidence_score": 1.0 + "target": "pages_categoriespage_doctorservicestab" }, { "relation": "contains", @@ -86664,9 +86674,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_exportjson", - "confidence_score": 1.0 + "target": "pages_categoriespage_exportjson" }, { "relation": "contains", @@ -86674,9 +86684,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L726", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_insuranceform", - "confidence_score": 1.0 + "target": "pages_categoriespage_insuranceform" }, { "relation": "contains", @@ -86684,9 +86694,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L721", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_insuranceschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_insuranceschema" }, { "relation": "contains", @@ -86694,9 +86704,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L728", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_insurancestab", - "confidence_score": 1.0 + "target": "pages_categoriespage_insurancestab" }, { "relation": "contains", @@ -86704,9 +86714,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_logouploadfield", - "confidence_score": 1.0 + "target": "pages_categoriespage_logouploadfield" }, { "relation": "contains", @@ -86714,9 +86724,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_provinceform", - "confidence_score": 1.0 + "target": "pages_categoriespage_provinceform" }, { "relation": "contains", @@ -86724,9 +86734,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_provinceschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_provinceschema" }, { "relation": "contains", @@ -86734,9 +86744,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_provincestab", - "confidence_score": 1.0 + "target": "pages_categoriespage_provincestab" }, { "relation": "contains", @@ -86744,9 +86754,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_sbadge", - "confidence_score": 1.0 + "target": "pages_categoriespage_sbadge" }, { "relation": "contains", @@ -86754,9 +86764,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L606", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_serviceform", - "confidence_score": 1.0 + "target": "pages_categoriespage_serviceform" }, { "relation": "contains", @@ -86764,9 +86774,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L600", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_serviceschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_serviceschema" }, { "relation": "contains", @@ -86774,9 +86784,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_specialtiestab", - "confidence_score": 1.0 + "target": "pages_categoriespage_specialtiestab" }, { "relation": "contains", @@ -86784,9 +86794,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L482", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_specialtyform", - "confidence_score": 1.0 + "target": "pages_categoriespage_specialtyform" }, { "relation": "contains", @@ -86794,9 +86804,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L476", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_specialtyschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_specialtyschema" }, { "relation": "contains", @@ -86804,9 +86814,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tabactions", - "confidence_score": 1.0 + "target": "pages_categoriespage_tabactions" }, { "relation": "contains", @@ -86814,9 +86824,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tabconfig", - "confidence_score": 1.0 + "target": "pages_categoriespage_tabconfig" }, { "relation": "contains", @@ -86824,9 +86834,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tabkey", - "confidence_score": 1.0 + "target": "pages_categoriespage_tabkey" }, { "relation": "contains", @@ -86834,9 +86844,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tabs", - "confidence_score": 1.0 + "target": "pages_categoriespage_tabs" }, { "relation": "contains", @@ -86844,9 +86854,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L855", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tagform", - "confidence_score": 1.0 + "target": "pages_categoriespage_tagform" }, { "relation": "contains", @@ -86854,9 +86864,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L851", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tagschema", - "confidence_score": 1.0 + "target": "pages_categoriespage_tagschema" }, { "relation": "contains", @@ -86864,9 +86874,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L857", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "pages_categoriespage_tagstab", - "confidence_score": 1.0 + "target": "pages_categoriespage_tagstab" }, { "relation": "imports_from", @@ -86875,9 +86885,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -86886,9 +86896,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -86897,9 +86907,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -86908,9 +86918,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_city", - "confidence_score": 1.0 + "target": "types_index_city" }, { "relation": "imports", @@ -86919,9 +86929,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_doctorservice", - "confidence_score": 1.0 + "target": "types_index_doctorservice" }, { "relation": "imports", @@ -86930,9 +86940,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_insurance", - "confidence_score": 1.0 + "target": "types_index_insurance" }, { "relation": "imports", @@ -86941,9 +86951,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_province", - "confidence_score": 1.0 + "target": "types_index_province" }, { "relation": "imports", @@ -86952,9 +86962,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_representation", - "confidence_score": 1.0 + "target": "types_index_representation" }, { "relation": "imports", @@ -86963,9 +86973,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_specialtyfull", - "confidence_score": 1.0 + "target": "types_index_specialtyfull" }, { "relation": "imports", @@ -86974,9 +86984,9 @@ "source_file": "assets/admin/pages/CategoriesPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_categoriespage", - "target": "types_index_tag", - "confidence_score": 1.0 + "target": "types_index_tag" }, { "relation": "calls", @@ -87006,9 +87016,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_claim", - "confidence_score": 1.0 + "target": "pages_claimspage_claim" }, { "relation": "contains", @@ -87016,9 +87026,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_claimitem", - "confidence_score": 1.0 + "target": "pages_claimspage_claimitem" }, { "relation": "contains", @@ -87026,9 +87036,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_claimspage", - "confidence_score": 1.0 + "target": "pages_claimspage_claimspage" }, { "relation": "contains", @@ -87036,9 +87046,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_debtrow", - "confidence_score": 1.0 + "target": "pages_claimspage_debtrow" }, { "relation": "contains", @@ -87046,9 +87056,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_endofdayunix", - "confidence_score": 1.0 + "target": "pages_claimspage_endofdayunix" }, { "relation": "contains", @@ -87056,9 +87066,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_insuranceoption", - "confidence_score": 1.0 + "target": "pages_claimspage_insuranceoption" }, { "relation": "contains", @@ -87066,9 +87076,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_isondaysago", - "confidence_score": 1.0 + "target": "pages_claimspage_isondaysago" }, { "relation": "contains", @@ -87076,9 +87086,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_kind_label", - "confidence_score": 1.0 + "target": "pages_claimspage_kind_label" }, { "relation": "contains", @@ -87086,9 +87096,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_status_filters", - "confidence_score": 1.0 + "target": "pages_claimspage_status_filters" }, { "relation": "contains", @@ -87096,9 +87106,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_status_meta", - "confidence_score": 1.0 + "target": "pages_claimspage_status_meta" }, { "relation": "contains", @@ -87106,9 +87116,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_todayiso", - "confidence_score": 1.0 + "target": "pages_claimspage_todayiso" }, { "relation": "contains", @@ -87116,9 +87126,9 @@ "source_file": "assets/admin/pages/ClaimsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_claimspage", - "target": "pages_claimspage_tounix", - "confidence_score": 1.0 + "target": "pages_claimspage_tounix" }, { "relation": "contains", @@ -87126,9 +87136,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_clinicaddress", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_clinicaddress" }, { "relation": "contains", @@ -87136,9 +87146,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L475", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_clinicdetailpage", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_clinicdetailpage" }, { "relation": "contains", @@ -87146,9 +87156,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_clinicdoctoritem", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_clinicdoctoritem" }, { "relation": "contains", @@ -87156,9 +87166,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_clinicinvitation", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_clinicinvitation" }, { "relation": "contains", @@ -87166,9 +87176,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_editform", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_editform" }, { "relation": "contains", @@ -87176,9 +87186,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L279", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_editmodal", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_editmodal" }, { "relation": "contains", @@ -87186,9 +87196,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_editschema", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_editschema" }, { "relation": "contains", @@ -87196,9 +87206,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L267", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_geocodecity", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_geocodecity" }, { "relation": "contains", @@ -87206,9 +87216,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_hues_list", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_hues_list" }, { "relation": "contains", @@ -87216,9 +87226,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L1341", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_infotile", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_infotile" }, { "relation": "contains", @@ -87226,9 +87236,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L464", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_inv_status_map", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_inv_status_map" }, { "relation": "contains", @@ -87236,9 +87246,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_iran_center", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_iran_center" }, { "relation": "contains", @@ -87246,9 +87256,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_mapclickhandler", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_mapclickhandler" }, { "relation": "contains", @@ -87256,9 +87266,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L238", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_mapflycontroller", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_mapflycontroller" }, { "relation": "contains", @@ -87266,9 +87276,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_mappicker", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_mappicker" }, { "relation": "contains", @@ -87276,9 +87286,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_multichecklist", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_multichecklist" }, { "relation": "contains", @@ -87286,9 +87296,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_opt", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_opt" }, { "relation": "contains", @@ -87296,9 +87306,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_optuuid", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_optuuid" }, { "relation": "contains", @@ -87306,9 +87316,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_searchableselectfield", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_searchableselectfield" }, { "relation": "contains", @@ -87316,9 +87326,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "pages_clinicdetailpage_urlorempty", - "confidence_score": 1.0 + "target": "pages_clinicdetailpage_urlorempty" }, { "relation": "imports_from", @@ -87327,9 +87337,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -87338,9 +87348,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -87349,9 +87359,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -87360,9 +87370,9 @@ "source_file": "assets/admin/pages/ClinicDetailPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicdetailpage", - "target": "types_index_clinicdetail", - "confidence_score": 1.0 + "target": "types_index_clinicdetail" }, { "relation": "calls", @@ -87381,9 +87391,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "pages_clinicformpage_cliniccreated", - "confidence_score": 1.0 + "target": "pages_clinicformpage_cliniccreated" }, { "relation": "contains", @@ -87391,9 +87401,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "pages_clinicformpage_clinicformpage", - "confidence_score": 1.0 + "target": "pages_clinicformpage_clinicformpage" }, { "relation": "contains", @@ -87401,9 +87411,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "pages_clinicformpage_formvalues", - "confidence_score": 1.0 + "target": "pages_clinicformpage_formvalues" }, { "relation": "contains", @@ -87411,9 +87421,9 @@ "source_file": "assets/admin/pages/ClinicFormPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicformpage", - "target": "pages_clinicformpage_schema", - "confidence_score": 1.0 + "target": "pages_clinicformpage_schema" }, { "relation": "contains", @@ -87421,9 +87431,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_avatar", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_avatar" }, { "relation": "contains", @@ -87431,9 +87441,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L546", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_clinicservicespage", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_clinicservicespage" }, { "relation": "contains", @@ -87441,9 +87451,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_clinicservicespageinner", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_clinicservicespageinner" }, { "relation": "contains", @@ -87451,9 +87461,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_empty_items", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_empty_items" }, { "relation": "contains", @@ -87461,9 +87471,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_empty_sections", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_empty_sections" }, { "relation": "contains", @@ -87471,9 +87481,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_itemform", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_itemform" }, { "relation": "contains", @@ -87481,9 +87491,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_itemschema", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_itemschema" }, { "relation": "contains", @@ -87491,9 +87501,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_sectionform", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_sectionform" }, { "relation": "contains", @@ -87501,9 +87511,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "pages_clinicservicespage_sectionschema", - "confidence_score": 1.0 + "target": "pages_clinicservicespage_sectionschema" }, { "relation": "imports_from", @@ -87512,9 +87522,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -87523,9 +87533,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "types_index_clinicstaff", - "confidence_score": 1.0 + "target": "types_index_clinicstaff" }, { "relation": "imports", @@ -87534,9 +87544,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "imports", @@ -87545,9 +87555,9 @@ "source_file": "assets/admin/pages/ClinicServicesPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicservicespage", - "target": "types_index_servicesection", - "confidence_score": 1.0 + "target": "types_index_servicesection" }, { "relation": "contains", @@ -87555,9 +87565,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "pages_clinicspage_addform", - "confidence_score": 1.0 + "target": "pages_clinicspage_addform" }, { "relation": "contains", @@ -87565,9 +87575,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "pages_clinicspage_addschema", - "confidence_score": 1.0 + "target": "pages_clinicspage_addschema" }, { "relation": "contains", @@ -87575,9 +87585,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "pages_clinicspage_clinicspage", - "confidence_score": 1.0 + "target": "pages_clinicspage_clinicspage" }, { "relation": "contains", @@ -87585,9 +87595,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "pages_clinicspage_hues_list", - "confidence_score": 1.0 + "target": "pages_clinicspage_hues_list" }, { "relation": "imports_from", @@ -87596,9 +87606,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -87607,9 +87617,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -87618,9 +87628,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -87629,9 +87639,9 @@ "source_file": "assets/admin/pages/ClinicsPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_clinicspage", - "target": "types_index_clinic", - "confidence_score": 1.0 + "target": "types_index_clinic" }, { "relation": "calls", @@ -87650,9 +87660,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "pages_commentspage_commentspage", - "confidence_score": 1.0 + "target": "pages_commentspage_commentspage" }, { "relation": "contains", @@ -87660,9 +87670,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "pages_commentspage_filters", - "confidence_score": 1.0 + "target": "pages_commentspage_filters" }, { "relation": "imports_from", @@ -87671,9 +87681,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -87682,9 +87692,9 @@ "source_file": "assets/admin/pages/CommentsPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_commentspage", - "target": "types_index_comment", - "confidence_score": 1.0 + "target": "types_index_comment" }, { "relation": "contains", @@ -87692,9 +87702,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_admincharts", - "confidence_score": 1.0 + "target": "pages_dashboardpage_admincharts" }, { "relation": "contains", @@ -87702,9 +87712,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_admindashboard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_admindashboard" }, { "relation": "contains", @@ -87712,9 +87722,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L269", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_adminrecent", - "confidence_score": 1.0 + "target": "pages_dashboardpage_adminrecent" }, { "relation": "contains", @@ -87722,9 +87732,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_adminstats", - "confidence_score": 1.0 + "target": "pages_dashboardpage_adminstats" }, { "relation": "contains", @@ -87732,9 +87742,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_appt_cls", - "confidence_score": 1.0 + "target": "pages_dashboardpage_appt_cls" }, { "relation": "contains", @@ -87742,9 +87752,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_appt_color", - "confidence_score": 1.0 + "target": "pages_dashboardpage_appt_color" }, { "relation": "contains", @@ -87752,9 +87762,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_appt_label", - "confidence_score": 1.0 + "target": "pages_dashboardpage_appt_label" }, { "relation": "contains", @@ -87762,9 +87772,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_apptrow", - "confidence_score": 1.0 + "target": "pages_dashboardpage_apptrow" }, { "relation": "contains", @@ -87772,9 +87782,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_avatarel", - "confidence_score": 1.0 + "target": "pages_dashboardpage_avatarel" }, { "relation": "contains", @@ -87782,9 +87792,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L579", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_clinicdashboard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_clinicdashboard" }, { "relation": "contains", @@ -87792,9 +87802,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L569", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_clinicdashboarddata", - "confidence_score": 1.0 + "target": "pages_dashboardpage_clinicdashboarddata" }, { "relation": "contains", @@ -87802,9 +87812,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L698", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_clinicinvitation", - "confidence_score": 1.0 + "target": "pages_dashboardpage_clinicinvitation" }, { "relation": "contains", @@ -87812,9 +87822,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L1136", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_dashboardpage", - "confidence_score": 1.0 + "target": "pages_dashboardpage_dashboardpage" }, { "relation": "contains", @@ -87822,9 +87832,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_datepreset", - "confidence_score": 1.0 + "target": "pages_dashboardpage_datepreset" }, { "relation": "contains", @@ -87832,9 +87842,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L706", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_doctorclinicinvitationscard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_doctorclinicinvitationscard" }, { "relation": "contains", @@ -87842,9 +87852,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L806", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_doctordashboard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_doctordashboard" }, { "relation": "contains", @@ -87852,9 +87862,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L795", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_doctordashboarddata", - "confidence_score": 1.0 + "target": "pages_dashboardpage_doctordashboarddata" }, { "relation": "contains", @@ -87862,9 +87872,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_getrange", - "confidence_score": 1.0 + "target": "pages_dashboardpage_getrange" }, { "relation": "contains", @@ -87872,9 +87882,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_kpiskeleton", - "confidence_score": 1.0 + "target": "pages_dashboardpage_kpiskeleton" }, { "relation": "contains", @@ -87882,9 +87892,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_loadingskeleton", - "confidence_score": 1.0 + "target": "pages_dashboardpage_loadingskeleton" }, { "relation": "contains", @@ -87892,9 +87902,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_minilist", - "confidence_score": 1.0 + "target": "pages_dashboardpage_minilist" }, { "relation": "contains", @@ -87902,9 +87912,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_minirow", - "confidence_score": 1.0 + "target": "pages_dashboardpage_minirow" }, { "relation": "contains", @@ -87912,9 +87922,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_pay_cls", - "confidence_score": 1.0 + "target": "pages_dashboardpage_pay_cls" }, { "relation": "contains", @@ -87922,9 +87932,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_pay_color", - "confidence_score": 1.0 + "target": "pages_dashboardpage_pay_color" }, { "relation": "contains", @@ -87932,9 +87942,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_pay_label", - "confidence_score": 1.0 + "target": "pages_dashboardpage_pay_label" }, { "relation": "contains", @@ -87942,9 +87952,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L989", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_repdoctorperf", - "confidence_score": 1.0 + "target": "pages_dashboardpage_repdoctorperf" }, { "relation": "contains", @@ -87952,9 +87962,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L996", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_representationdashboard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_representationdashboard" }, { "relation": "contains", @@ -87962,9 +87972,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L982", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_repsummary", - "confidence_score": 1.0 + "target": "pages_dashboardpage_repsummary" }, { "relation": "contains", @@ -87972,9 +87982,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L903", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_secretarydashboard", - "confidence_score": 1.0 + "target": "pages_dashboardpage_secretarydashboard" }, { "relation": "contains", @@ -87982,9 +87992,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L896", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_secretarydashboarddata", - "confidence_score": 1.0 + "target": "pages_dashboardpage_secretarydashboarddata" }, { "relation": "contains", @@ -87992,9 +88002,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_svgdonut", - "confidence_score": 1.0 + "target": "pages_dashboardpage_svgdonut" }, { "relation": "contains", @@ -88002,9 +88012,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_svghbars", - "confidence_score": 1.0 + "target": "pages_dashboardpage_svghbars" }, { "relation": "contains", @@ -88012,9 +88022,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_svglinechart", - "confidence_score": 1.0 + "target": "pages_dashboardpage_svglinechart" }, { "relation": "contains", @@ -88022,9 +88032,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L221", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "pages_dashboardpage_todayappointmentstable", - "confidence_score": 1.0 + "target": "pages_dashboardpage_todayappointmentstable" }, { "relation": "imports_from", @@ -88033,9 +88043,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -88044,9 +88054,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -88055,9 +88065,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L296", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage_admindashboard", - "target": "pages_dashboardpage_getrange", - "confidence_score": 1.0 + "target": "pages_dashboardpage_getrange" }, { "relation": "calls", @@ -88066,9 +88076,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L583", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage_clinicdashboard", - "target": "pages_dashboardpage_getrange", - "confidence_score": 1.0 + "target": "pages_dashboardpage_getrange" }, { "relation": "calls", @@ -88077,9 +88087,9 @@ "source_file": "assets/admin/pages/DashboardPage.tsx", "source_location": "L809", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_dashboardpage_doctordashboard", - "target": "pages_dashboardpage_getrange", - "confidence_score": 1.0 + "target": "pages_dashboardpage_getrange" }, { "relation": "calls", @@ -88120,9 +88130,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L323", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addminutes", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addminutes" }, { "relation": "contains", @@ -88130,9 +88140,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L978", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addresscard", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addresscard" }, { "relation": "contains", @@ -88140,9 +88150,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addressdata", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addressdata" }, { "relation": "contains", @@ -88150,9 +88160,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L805", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addressmodal", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addressmodal" }, { "relation": "contains", @@ -88160,9 +88170,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L803", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addrform", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addrform" }, { "relation": "contains", @@ -88170,9 +88180,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L787", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_addrschema", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_addrschema" }, { "relation": "contains", @@ -88180,9 +88190,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_avatar_colors", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_avatar_colors" }, { "relation": "contains", @@ -88190,9 +88200,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_bookingmeta", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_bookingmeta" }, { "relation": "contains", @@ -88200,9 +88210,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L330", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_calcslotcount", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_calcslotcount" }, { "relation": "contains", @@ -88210,9 +88220,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_cityopt", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_cityopt" }, { "relation": "contains", @@ -88220,9 +88230,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2220", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_clinicinvitationssection", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_clinicinvitationssection" }, { "relation": "contains", @@ -88230,9 +88240,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_dateoverridedata", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_dateoverridedata" }, { "relation": "contains", @@ -88240,9 +88250,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1513", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_dateoverridemodal", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_dateoverridemodal" }, { "relation": "contains", @@ -88250,9 +88260,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1653", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_dateoverridestab", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_dateoverridestab" }, { "relation": "contains", @@ -88260,9 +88270,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_default_booking_meta", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_default_booking_meta" }, { "relation": "contains", @@ -88270,9 +88280,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L298", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_default_session", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_default_session" }, { "relation": "contains", @@ -88280,9 +88290,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_degree_labels", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_degree_labels" }, { "relation": "contains", @@ -88290,9 +88300,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_degree_options", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_degree_options" }, { "relation": "contains", @@ -88300,9 +88310,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_doctoravatar", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_doctoravatar" }, { "relation": "contains", @@ -88310,9 +88320,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_doctordetail", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_doctordetail" }, { "relation": "contains", @@ -88320,9 +88330,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2320", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_doctordetailpage", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_doctordetailpage" }, { "relation": "contains", @@ -88330,9 +88340,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L297", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_duration_opts", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_duration_opts" }, { "relation": "contains", @@ -88340,9 +88350,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1974", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_edit_degree_options", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_edit_degree_options" }, { "relation": "contains", @@ -88350,9 +88360,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1981", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_edit_gender_options", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_edit_gender_options" }, { "relation": "contains", @@ -88360,9 +88370,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1986", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editfield", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editfield" }, { "relation": "contains", @@ -88370,9 +88380,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2206", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editform", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editform" }, { "relation": "contains", @@ -88380,9 +88390,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2191", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editschema", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editschema" }, { "relation": "contains", @@ -88390,9 +88400,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2001", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editsectionheader", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editsectionheader" }, { "relation": "contains", @@ -88400,9 +88410,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2017", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editselectedentry", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editselectedentry" }, { "relation": "contains", @@ -88410,9 +88420,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2019", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_editspecialtypicker", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_editspecialtypicker" }, { "relation": "contains", @@ -88420,9 +88430,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L305", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_empty_new_schedule", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_empty_new_schedule" }, { "relation": "contains", @@ -88430,9 +88440,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_formatpersiandate", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_formatpersiandate" }, { "relation": "contains", @@ -88440,9 +88450,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_gender_options", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_gender_options" }, { "relation": "contains", @@ -88450,9 +88460,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L449", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_geocodecityiniran", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_geocodecityiniran" }, { "relation": "contains", @@ -88460,9 +88470,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_gtoj", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_gtoj" }, { "relation": "contains", @@ -88470,9 +88480,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L314", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_hasoverlap", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_hasoverlap" }, { "relation": "contains", @@ -88480,9 +88490,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L586", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_hierarchicalspecialtypicker", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_hierarchicalspecialtypicker" }, { "relation": "contains", @@ -88490,9 +88500,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_holidaydata", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_holidaydata" }, { "relation": "contains", @@ -88500,9 +88510,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1752", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_holidaymodal", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_holidaymodal" }, { "relation": "contains", @@ -88510,9 +88520,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1825", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_holidaystab", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_holidaystab" }, { "relation": "contains", @@ -88520,9 +88530,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1026", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_hour_values", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_hour_values" }, { "relation": "contains", @@ -88530,9 +88540,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_imagefiledata", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_imagefiledata" }, { "relation": "contains", @@ -88540,9 +88550,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L407", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_infocard", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_infocard" }, { "relation": "contains", @@ -88550,9 +88560,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2210", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_invitationitem", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_invitationitem" }, { "relation": "contains", @@ -88560,9 +88570,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L447", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_iran_center", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_iran_center" }, { "relation": "contains", @@ -88570,9 +88580,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_jalaali", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jalaali" }, { "relation": "contains", @@ -88580,9 +88590,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_jalali_days_short", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jalali_days_short" }, { "relation": "contains", @@ -88590,9 +88600,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_jalali_months", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jalali_months" }, { "relation": "contains", @@ -88600,9 +88610,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_jfirstdayofweek", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jfirstdayofweek" }, { "relation": "contains", @@ -88610,9 +88620,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_jtog", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jtog" }, { "relation": "contains", @@ -88620,9 +88630,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L461", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_mapclickhandler", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_mapclickhandler" }, { "relation": "contains", @@ -88630,9 +88640,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L466", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_mapcontroller", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_mapcontroller" }, { "relation": "contains", @@ -88640,9 +88650,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L474", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_mappicker", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_mappicker" }, { "relation": "contains", @@ -88650,9 +88660,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1027", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_minute_values", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_minute_values" }, { "relation": "contains", @@ -88660,9 +88670,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_newdayconfig", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_newdayconfig" }, { "relation": "contains", @@ -88670,9 +88680,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_newschedulemap", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_newschedulemap" }, { "relation": "contains", @@ -88680,9 +88690,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L309", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_parseminutes", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_parseminutes" }, { "relation": "contains", @@ -88690,9 +88700,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_persiandateinput", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_persiandateinput" }, { "relation": "contains", @@ -88700,9 +88710,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_provinceopt", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_provinceopt" }, { "relation": "contains", @@ -88710,9 +88720,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_schedule_days", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_schedule_days" }, { "relation": "contains", @@ -88720,9 +88730,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1933", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_schedule_tabs", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_schedule_tabs" }, { "relation": "contains", @@ -88730,9 +88740,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1939", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_schedulesection", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_schedulesection" }, { "relation": "contains", @@ -88740,9 +88750,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L498", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_searchableselect", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_searchableselect" }, { "relation": "contains", @@ -88750,9 +88760,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_serviceopt", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_serviceopt" }, { "relation": "contains", @@ -88760,9 +88770,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L694", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_servicespicker", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_servicespicker" }, { "relation": "contains", @@ -88770,9 +88780,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_sessionconfig", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_sessionconfig" }, { "relation": "contains", @@ -88780,9 +88790,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1092", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_sessioneditor", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_sessioneditor" }, { "relation": "contains", @@ -88790,9 +88800,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_slotconfig", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_slotconfig" }, { "relation": "contains", @@ -88800,9 +88810,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1051", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_sloteditor", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_sloteditor" }, { "relation": "contains", @@ -88810,9 +88820,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_specialty_colors", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_specialty_colors" }, { "relation": "contains", @@ -88820,9 +88830,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_specialtyopt", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_specialtyopt" }, { "relation": "contains", @@ -88830,9 +88840,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L432", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_starrating", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_starrating" }, { "relation": "contains", @@ -88840,9 +88850,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1029", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_timeselect", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_timeselect" }, { "relation": "contains", @@ -88850,9 +88860,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_todaygregorian", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_todaygregorian" }, { "relation": "contains", @@ -88860,9 +88870,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_topersiannums", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_topersiannums" }, { "relation": "contains", @@ -88870,9 +88880,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L345", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_tstodate", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_tstodate" }, { "relation": "contains", @@ -88880,9 +88890,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_uploaddoctorimage", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_uploaddoctorimage" }, { "relation": "contains", @@ -88890,9 +88900,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L2189", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_urlorempty", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_urlorempty" }, { "relation": "contains", @@ -88900,9 +88910,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_weeklyscheduledata", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_weeklyscheduledata" }, { "relation": "contains", @@ -88910,9 +88920,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1218", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "pages_doctordetailpage_weeklyscheduletab", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_weeklyscheduletab" }, { "relation": "imports_from", @@ -88921,9 +88931,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -88932,9 +88942,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -88943,9 +88953,9 @@ "source_file": "assets/admin/pages/DoctorProfilePage.tsx", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorprofilepage", - "target": "pages_doctordetailpage", - "confidence_score": 1.0 + "target": "pages_doctordetailpage" }, { "relation": "calls", @@ -88954,9 +88964,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_formatpersiandate", - "target": "pages_doctordetailpage_topersiannums", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_topersiannums" }, { "relation": "calls", @@ -88965,9 +88975,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L250", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_persiandateinput", - "target": "pages_doctordetailpage_topersiannums", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_topersiannums" }, { "relation": "calls", @@ -88976,9 +88986,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_formatpersiandate", - "target": "pages_doctordetailpage_gtoj", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_gtoj" }, { "relation": "calls", @@ -88987,9 +88997,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_persiandateinput", - "target": "pages_doctordetailpage_gtoj", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_gtoj" }, { "relation": "calls", @@ -88998,9 +89008,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_persiandateinput", - "target": "pages_doctordetailpage_formatpersiandate", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_formatpersiandate" }, { "relation": "calls", @@ -89009,9 +89019,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_persiandateinput", - "target": "pages_doctordetailpage_jfirstdayofweek", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_jfirstdayofweek" }, { "relation": "calls", @@ -89020,9 +89030,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_persiandateinput", - "target": "pages_doctordetailpage_todaygregorian", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_todaygregorian" }, { "relation": "calls", @@ -89031,9 +89041,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L324", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_addminutes", - "target": "pages_doctordetailpage_parseminutes", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_parseminutes" }, { "relation": "calls", @@ -89042,9 +89052,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_calcslotcount", - "target": "pages_doctordetailpage_parseminutes", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_parseminutes" }, { "relation": "calls", @@ -89053,9 +89063,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_hasoverlap", - "target": "pages_doctordetailpage_parseminutes", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_parseminutes" }, { "relation": "calls", @@ -89064,9 +89074,9 @@ "source_file": "assets/admin/pages/DoctorDetailPage.tsx", "source_location": "L1100", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctordetailpage_sessioneditor", - "target": "pages_doctordetailpage_calcslotcount", - "confidence_score": 1.0 + "target": "pages_doctordetailpage_calcslotcount" }, { "relation": "calls", @@ -89085,9 +89095,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_degree_options", - "confidence_score": 1.0 + "target": "pages_doctorformpage_degree_options" }, { "relation": "contains", @@ -89095,9 +89105,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_doctorformpage", - "confidence_score": 1.0 + "target": "pages_doctorformpage_doctorformpage" }, { "relation": "contains", @@ -89105,9 +89115,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_field", - "confidence_score": 1.0 + "target": "pages_doctorformpage_field" }, { "relation": "contains", @@ -89115,9 +89125,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_formvalues", - "confidence_score": 1.0 + "target": "pages_doctorformpage_formvalues" }, { "relation": "contains", @@ -89125,9 +89135,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_gender_options", - "confidence_score": 1.0 + "target": "pages_doctorformpage_gender_options" }, { "relation": "contains", @@ -89135,9 +89145,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_schema", - "confidence_score": 1.0 + "target": "pages_doctorformpage_schema" }, { "relation": "contains", @@ -89145,9 +89155,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_sectionheader", - "confidence_score": 1.0 + "target": "pages_doctorformpage_sectionheader" }, { "relation": "contains", @@ -89155,9 +89165,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_selectedentry", - "confidence_score": 1.0 + "target": "pages_doctorformpage_selectedentry" }, { "relation": "contains", @@ -89165,9 +89175,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_specialtyoption", - "confidence_score": 1.0 + "target": "pages_doctorformpage_specialtyoption" }, { "relation": "contains", @@ -89175,9 +89185,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "pages_doctorformpage_specialtypicker", - "confidence_score": 1.0 + "target": "pages_doctorformpage_specialtypicker" }, { "relation": "imports_from", @@ -89186,9 +89196,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -89197,9 +89207,9 @@ "source_file": "assets/admin/pages/DoctorFormPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorformpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -89218,9 +89228,9 @@ "source_file": "assets/admin/pages/DoctorProfilePage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorprofilepage", - "target": "pages_doctorprofilepage_doctorprofilepage", - "confidence_score": 1.0 + "target": "pages_doctorprofilepage_doctorprofilepage" }, { "relation": "contains", @@ -89228,9 +89238,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_admindoctor", - "confidence_score": 1.0 + "target": "pages_doctorspage_admindoctor" }, { "relation": "contains", @@ -89238,9 +89248,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_degree_badge", - "confidence_score": 1.0 + "target": "pages_doctorspage_degree_badge" }, { "relation": "contains", @@ -89248,9 +89258,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_degree_label", - "confidence_score": 1.0 + "target": "pages_doctorspage_degree_label" }, { "relation": "contains", @@ -89258,9 +89268,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_doctoravatar", - "confidence_score": 1.0 + "target": "pages_doctorspage_doctoravatar" }, { "relation": "contains", @@ -89268,9 +89278,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_doctorspage", - "confidence_score": 1.0 + "target": "pages_doctorspage_doctorspage" }, { "relation": "contains", @@ -89278,9 +89288,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_doctorstats", - "confidence_score": 1.0 + "target": "pages_doctorspage_doctorstats" }, { "relation": "contains", @@ -89288,9 +89298,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_hues_list", - "confidence_score": 1.0 + "target": "pages_doctorspage_hues_list" }, { "relation": "contains", @@ -89298,9 +89308,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "pages_doctorspage_specialtyoption", - "confidence_score": 1.0 + "target": "pages_doctorspage_specialtyoption" }, { "relation": "imports_from", @@ -89309,9 +89319,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -89320,9 +89330,9 @@ "source_file": "assets/admin/pages/DoctorsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_doctorspage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -89341,9 +89351,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "pages_financialreportpage_breakdown", - "confidence_score": 1.0 + "target": "pages_financialreportpage_breakdown" }, { "relation": "contains", @@ -89351,9 +89361,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "pages_financialreportpage_financialreportpage", - "confidence_score": 1.0 + "target": "pages_financialreportpage_financialreportpage" }, { "relation": "contains", @@ -89361,9 +89371,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "pages_financialreportpage_source_label", - "confidence_score": 1.0 + "target": "pages_financialreportpage_source_label" }, { "relation": "contains", @@ -89371,9 +89381,9 @@ "source_file": "assets/admin/pages/FinancialReportPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_financialreportpage", - "target": "pages_financialreportpage_summary", - "confidence_score": 1.0 + "target": "pages_financialreportpage_summary" }, { "relation": "contains", @@ -89381,9 +89391,9 @@ "source_file": "assets/admin/pages/InsurancePricingPage.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_insurancepricingpage", - "target": "pages_insurancepricingpage_insurancepricingpage", - "confidence_score": 1.0 + "target": "pages_insurancepricingpage_insurancepricingpage" }, { "relation": "contains", @@ -89391,9 +89401,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "pages_loginpage_forgotstep", - "confidence_score": 1.0 + "target": "pages_loginpage_forgotstep" }, { "relation": "contains", @@ -89401,9 +89411,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "pages_loginpage_loginpage", - "confidence_score": 1.0 + "target": "pages_loginpage_loginpage" }, { "relation": "contains", @@ -89411,9 +89421,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "pages_loginpage_mode", - "confidence_score": 1.0 + "target": "pages_loginpage_mode" }, { "relation": "contains", @@ -89421,9 +89431,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "pages_loginpage_smsstep", - "confidence_score": 1.0 + "target": "pages_loginpage_smsstep" }, { "relation": "imports_from", @@ -89432,9 +89442,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -89443,9 +89453,9 @@ "source_file": "assets/admin/pages/LoginPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_loginpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -89464,9 +89474,9 @@ "source_file": "assets/admin/pages/MyClinicPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myclinicpage", - "target": "pages_myclinicpage_myclinicpage", - "confidence_score": 1.0 + "target": "pages_myclinicpage_myclinicpage" }, { "relation": "imports_from", @@ -89475,9 +89485,9 @@ "source_file": "assets/admin/pages/MyClinicPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myclinicpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -89486,9 +89496,9 @@ "source_file": "assets/admin/pages/MyClinicPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myclinicpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -89507,9 +89517,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "pages_myfinancialpage_financialsummary", - "confidence_score": 1.0 + "target": "pages_myfinancialpage_financialsummary" }, { "relation": "contains", @@ -89517,9 +89527,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "pages_myfinancialpage_kpicard", - "confidence_score": 1.0 + "target": "pages_myfinancialpage_kpicard" }, { "relation": "contains", @@ -89527,9 +89537,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "pages_myfinancialpage_monthlyentry", - "confidence_score": 1.0 + "target": "pages_myfinancialpage_monthlyentry" }, { "relation": "contains", @@ -89537,9 +89547,9 @@ "source_file": "assets/admin/pages/MyFinancialPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_myfinancialpage", - "target": "pages_myfinancialpage_myfinancialpage", - "confidence_score": 1.0 + "target": "pages_myfinancialpage_myfinancialpage" }, { "relation": "contains", @@ -89547,9 +89557,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_calcfinalprice", - "confidence_score": 1.0 + "target": "pages_mypatientspage_calcfinalprice" }, { "relation": "contains", @@ -89557,9 +89567,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1586", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_editsessionmodal", - "confidence_score": 1.0 + "target": "pages_mypatientspage_editsessionmodal" }, { "relation": "contains", @@ -89567,9 +89577,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_empty_records", - "confidence_score": 1.0 + "target": "pages_mypatientspage_empty_records" }, { "relation": "contains", @@ -89577,9 +89587,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_empty_sessions", - "confidence_score": 1.0 + "target": "pages_mypatientspage_empty_sessions" }, { "relation": "contains", @@ -89587,9 +89597,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1357", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_filenumber", - "confidence_score": 1.0 + "target": "pages_mypatientspage_filenumber" }, { "relation": "contains", @@ -89597,9 +89607,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_getpatientname", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientname" }, { "relation": "contains", @@ -89607,9 +89617,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_getpatientnationalcode", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientnationalcode" }, { "relation": "contains", @@ -89617,9 +89627,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_getpatientphone", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientphone" }, { "relation": "contains", @@ -89627,9 +89637,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_insurancepricing", - "confidence_score": 1.0 + "target": "pages_mypatientspage_insurancepricing" }, { "relation": "contains", @@ -89637,9 +89647,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1654", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_mypatientspage", - "confidence_score": 1.0 + "target": "pages_mypatientspage_mypatientspage" }, { "relation": "contains", @@ -89647,9 +89657,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_mypatientspageinner", - "confidence_score": 1.0 + "target": "pages_mypatientspage_mypatientspageinner" }, { "relation": "contains", @@ -89657,9 +89667,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1342", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_patientavatar", - "confidence_score": 1.0 + "target": "pages_mypatientspage_patientavatar" }, { "relation": "contains", @@ -89667,9 +89677,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1361", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_patientcard", - "confidence_score": 1.0 + "target": "pages_mypatientspage_patientcard" }, { "relation": "contains", @@ -89677,9 +89687,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1401", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_patientrow", - "confidence_score": 1.0 + "target": "pages_mypatientspage_patientrow" }, { "relation": "contains", @@ -89687,9 +89697,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_payment_badge", - "confidence_score": 1.0 + "target": "pages_mypatientspage_payment_badge" }, { "relation": "contains", @@ -89697,9 +89707,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_payment_labels", - "confidence_score": 1.0 + "target": "pages_mypatientspage_payment_labels" }, { "relation": "contains", @@ -89707,9 +89717,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_pricinginsurance", - "confidence_score": 1.0 + "target": "pages_mypatientspage_pricinginsurance" }, { "relation": "contains", @@ -89717,9 +89727,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_sessionformdata", - "confidence_score": 1.0 + "target": "pages_mypatientspage_sessionformdata" }, { "relation": "contains", @@ -89727,9 +89737,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1432", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_sessionrow", - "confidence_score": 1.0 + "target": "pages_mypatientspage_sessionrow" }, { "relation": "contains", @@ -89737,9 +89747,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "pages_mypatientspage_sessionschema", - "confidence_score": 1.0 + "target": "pages_mypatientspage_sessionschema" }, { "relation": "imports_from", @@ -89748,9 +89758,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -89759,9 +89769,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "types_index_patientrecord", - "confidence_score": 1.0 + "target": "types_index_patientrecord" }, { "relation": "imports", @@ -89770,9 +89780,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "types_index_patientsession", - "confidence_score": 1.0 + "target": "types_index_patientsession" }, { "relation": "imports", @@ -89781,9 +89791,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "imports", @@ -89792,9 +89802,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage", - "target": "types_index_servicesection", - "confidence_score": 1.0 + "target": "types_index_servicesection" }, { "relation": "calls", @@ -89803,9 +89813,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_mypatientspageinner", - "target": "pages_mypatientspage_getpatientname", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientname" }, { "relation": "calls", @@ -89814,9 +89824,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1368", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientcard", - "target": "pages_mypatientspage_getpatientname", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientname" }, { "relation": "calls", @@ -89825,9 +89835,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1408", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientrow", - "target": "pages_mypatientspage_getpatientname", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientname" }, { "relation": "calls", @@ -89836,9 +89846,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_mypatientspageinner", - "target": "pages_mypatientspage_getpatientphone", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientphone" }, { "relation": "calls", @@ -89847,9 +89857,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1369", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientcard", - "target": "pages_mypatientspage_getpatientphone", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientphone" }, { "relation": "calls", @@ -89858,9 +89868,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1421", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientrow", - "target": "pages_mypatientspage_getpatientphone", - "confidence_score": 1.0 + "target": "pages_mypatientspage_getpatientphone" }, { "relation": "calls", @@ -89869,9 +89879,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_mypatientspageinner", - "target": "pages_mypatientspage_calcfinalprice", - "confidence_score": 1.0 + "target": "pages_mypatientspage_calcfinalprice" }, { "relation": "calls", @@ -89880,9 +89890,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1388", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientcard", - "target": "pages_mypatientspage_patientavatar", - "confidence_score": 1.0 + "target": "pages_mypatientspage_patientavatar" }, { "relation": "calls", @@ -89891,9 +89901,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1418", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientrow", - "target": "pages_mypatientspage_patientavatar", - "confidence_score": 1.0 + "target": "pages_mypatientspage_patientavatar" }, { "relation": "calls", @@ -89902,9 +89912,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1391", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientcard", - "target": "pages_mypatientspage_filenumber", - "confidence_score": 1.0 + "target": "pages_mypatientspage_filenumber" }, { "relation": "calls", @@ -89913,9 +89923,9 @@ "source_file": "assets/admin/pages/MyPatientsPage.tsx", "source_location": "L1420", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mypatientspage_patientrow", - "target": "pages_mypatientspage_filenumber", - "confidence_score": 1.0 + "target": "pages_mypatientspage_filenumber" }, { "relation": "contains", @@ -89923,9 +89933,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_action_headers", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_action_headers" }, { "relation": "contains", @@ -89933,9 +89943,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_all_actions", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_all_actions" }, { "relation": "contains", @@ -89943,9 +89953,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_clinicdoctor", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_clinicdoctor" }, { "relation": "contains", @@ -89953,9 +89963,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L251", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_createform", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_createform" }, { "relation": "contains", @@ -89963,9 +89973,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L247", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_createschema", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_createschema" }, { "relation": "contains", @@ -89973,9 +89983,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_default_permissions", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_default_permissions" }, { "relation": "contains", @@ -89983,9 +89993,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_mysecretariespage", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_mysecretariespage" }, { "relation": "contains", @@ -89993,9 +90003,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_permission_labels", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_permission_labels" }, { "relation": "contains", @@ -90003,9 +90013,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_permissionsmatrix", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_permissionsmatrix" }, { "relation": "contains", @@ -90013,9 +90023,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "pages_mysecretariespage_permsection", - "confidence_score": 1.0 + "target": "pages_mysecretariespage_permsection" }, { "relation": "imports_from", @@ -90024,9 +90034,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -90035,9 +90045,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "imports_from", @@ -90046,9 +90056,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90057,9 +90067,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "types_index_secretary", - "confidence_score": 1.0 + "target": "types_index_secretary" }, { "relation": "imports", @@ -90068,9 +90078,9 @@ "source_file": "assets/admin/pages/MySecretariesPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_mysecretariespage", - "target": "types_index_secretarypermissions", - "confidence_score": 1.0 + "target": "types_index_secretarypermissions" }, { "relation": "calls", @@ -90089,9 +90099,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_contract", - "confidence_score": 1.0 + "target": "pages_newsessionpage_contract" }, { "relation": "contains", @@ -90099,9 +90109,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_coveragerow", - "confidence_score": 1.0 + "target": "pages_newsessionpage_coveragerow" }, { "relation": "contains", @@ -90109,9 +90119,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_fieldlabel", - "confidence_score": 1.0 + "target": "pages_newsessionpage_fieldlabel" }, { "relation": "contains", @@ -90119,9 +90129,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_formdata", - "confidence_score": 1.0 + "target": "pages_newsessionpage_formdata" }, { "relation": "contains", @@ -90129,9 +90139,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_newsessionpage", - "confidence_score": 1.0 + "target": "pages_newsessionpage_newsessionpage" }, { "relation": "contains", @@ -90139,9 +90149,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_patientshareof", - "confidence_score": 1.0 + "target": "pages_newsessionpage_patientshareof" }, { "relation": "contains", @@ -90149,9 +90159,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_payment_labels", - "confidence_score": 1.0 + "target": "pages_newsessionpage_payment_labels" }, { "relation": "contains", @@ -90159,9 +90169,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_rule", - "confidence_score": 1.0 + "target": "pages_newsessionpage_rule" }, { "relation": "contains", @@ -90169,9 +90179,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_schema", - "confidence_score": 1.0 + "target": "pages_newsessionpage_schema" }, { "relation": "contains", @@ -90179,9 +90189,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "pages_newsessionpage_sectiontitle", - "confidence_score": 1.0 + "target": "pages_newsessionpage_sectiontitle" }, { "relation": "imports_from", @@ -90190,9 +90200,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90201,9 +90211,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "types_index_patientrecord", - "confidence_score": 1.0 + "target": "types_index_patientrecord" }, { "relation": "imports", @@ -90212,9 +90222,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "imports", @@ -90223,9 +90233,9 @@ "source_file": "assets/admin/pages/NewSessionPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_newsessionpage", - "target": "types_index_servicesection", - "confidence_score": 1.0 + "target": "types_index_servicesection" }, { "relation": "contains", @@ -90233,9 +90243,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "pages_paymentdetailpage_inforow", - "confidence_score": 1.0 + "target": "pages_paymentdetailpage_inforow" }, { "relation": "contains", @@ -90243,9 +90253,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "pages_paymentdetailpage_paymentdetailpage", - "confidence_score": 1.0 + "target": "pages_paymentdetailpage_paymentdetailpage" }, { "relation": "imports_from", @@ -90254,9 +90264,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90265,9 +90275,9 @@ "source_file": "assets/admin/pages/PaymentDetailPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentdetailpage", - "target": "types_index_payment", - "confidence_score": 1.0 + "target": "types_index_payment" }, { "relation": "contains", @@ -90275,9 +90285,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "pages_paymentspage_paymentspage", - "confidence_score": 1.0 + "target": "pages_paymentspage_paymentspage" }, { "relation": "contains", @@ -90285,9 +90295,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "pages_paymentspage_status_filters", - "confidence_score": 1.0 + "target": "pages_paymentspage_status_filters" }, { "relation": "imports_from", @@ -90296,9 +90306,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90307,9 +90317,9 @@ "source_file": "assets/admin/pages/PaymentsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_paymentspage", - "target": "types_index_payment", - "confidence_score": 1.0 + "target": "types_index_payment" }, { "relation": "contains", @@ -90317,9 +90327,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_empty", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_empty" }, { "relation": "contains", @@ -90327,9 +90337,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_preregistration", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_preregistration" }, { "relation": "contains", @@ -90337,9 +90347,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_preregistrationspage", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_preregistrationspage" }, { "relation": "contains", @@ -90347,9 +90357,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_status_meta", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_status_meta" }, { "relation": "contains", @@ -90357,9 +90367,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_status_tabs", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_status_tabs" }, { "relation": "contains", @@ -90367,9 +90377,9 @@ "source_file": "assets/admin/pages/PreRegistrationsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_preregistrationspage", - "target": "pages_preregistrationspage_type_meta", - "confidence_score": 1.0 + "target": "pages_preregistrationspage_type_meta" }, { "relation": "contains", @@ -90377,9 +90387,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "pages_ratingspage_ratingspage", - "confidence_score": 1.0 + "target": "pages_ratingspage_ratingspage" }, { "relation": "contains", @@ -90387,9 +90397,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "pages_ratingspage_stars", - "confidence_score": 1.0 + "target": "pages_ratingspage_stars" }, { "relation": "imports_from", @@ -90398,9 +90408,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90409,9 +90419,9 @@ "source_file": "assets/admin/pages/RatingsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_ratingspage", - "target": "types_index_rating", - "confidence_score": 1.0 + "target": "types_index_rating" }, { "relation": "contains", @@ -90419,9 +90429,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "pages_representationdetailpage_detailrow", - "confidence_score": 1.0 + "target": "pages_representationdetailpage_detailrow" }, { "relation": "contains", @@ -90429,9 +90439,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "pages_representationdetailpage_representationdetailpage", - "confidence_score": 1.0 + "target": "pages_representationdetailpage_representationdetailpage" }, { "relation": "imports_from", @@ -90440,9 +90450,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90451,9 +90461,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "types_index_city", - "confidence_score": 1.0 + "target": "types_index_city" }, { "relation": "imports", @@ -90462,9 +90472,9 @@ "source_file": "assets/admin/pages/RepresentationDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationdetailpage", - "target": "types_index_representation", - "confidence_score": 1.0 + "target": "types_index_representation" }, { "relation": "contains", @@ -90472,9 +90482,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "pages_representationfinancepage_financerow", - "confidence_score": 1.0 + "target": "pages_representationfinancepage_financerow" }, { "relation": "contains", @@ -90482,9 +90492,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "pages_representationfinancepage_rangefrom", - "confidence_score": 1.0 + "target": "pages_representationfinancepage_rangefrom" }, { "relation": "contains", @@ -90492,9 +90502,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "pages_representationfinancepage_rangekey", - "confidence_score": 1.0 + "target": "pages_representationfinancepage_rangekey" }, { "relation": "contains", @@ -90502,9 +90512,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "pages_representationfinancepage_ranges", - "confidence_score": 1.0 + "target": "pages_representationfinancepage_ranges" }, { "relation": "contains", @@ -90512,9 +90522,9 @@ "source_file": "assets/admin/pages/RepresentationFinancePage.tsx", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationfinancepage", - "target": "pages_representationfinancepage_representationfinancepage", - "confidence_score": 1.0 + "target": "pages_representationfinancepage_representationfinancepage" }, { "relation": "contains", @@ -90522,9 +90532,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "pages_representationprofilepage_ibanitem", - "confidence_score": 1.0 + "target": "pages_representationprofilepage_ibanitem" }, { "relation": "contains", @@ -90532,9 +90542,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "pages_representationprofilepage_repprofile", - "confidence_score": 1.0 + "target": "pages_representationprofilepage_repprofile" }, { "relation": "contains", @@ -90542,9 +90552,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "pages_representationprofilepage_representationprofilepage", - "confidence_score": 1.0 + "target": "pages_representationprofilepage_representationprofilepage" }, { "relation": "contains", @@ -90552,9 +90562,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage", - "target": "pages_representationprofilepage_unwrap", - "confidence_score": 1.0 + "target": "pages_representationprofilepage_unwrap" }, { "relation": "calls", @@ -90563,9 +90573,9 @@ "source_file": "assets/admin/pages/RepresentationProfilePage.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationprofilepage_representationprofilepage", - "target": "pages_representationprofilepage_unwrap", - "confidence_score": 1.0 + "target": "pages_representationprofilepage_unwrap" }, { "relation": "contains", @@ -90573,9 +90583,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_ibanitem", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_ibanitem" }, { "relation": "contains", @@ -90583,9 +90593,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_repme", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_repme" }, { "relation": "contains", @@ -90593,9 +90603,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_representationsettlementpage", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_representationsettlementpage" }, { "relation": "contains", @@ -90603,9 +90613,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_repsummary", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_repsummary" }, { "relation": "contains", @@ -90613,9 +90623,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_settlementrow", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_settlementrow" }, { "relation": "contains", @@ -90623,9 +90633,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_status_class", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_status_class" }, { "relation": "contains", @@ -90633,9 +90643,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_status_label", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_status_label" }, { "relation": "contains", @@ -90643,9 +90653,9 @@ "source_file": "assets/admin/pages/RepresentationSettlementPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationsettlementpage", - "target": "pages_representationsettlementpage_walletbalance", - "confidence_score": 1.0 + "target": "pages_representationsettlementpage_walletbalance" }, { "relation": "contains", @@ -90653,9 +90663,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "pages_representationspage_formdata", - "confidence_score": 1.0 + "target": "pages_representationspage_formdata" }, { "relation": "contains", @@ -90663,9 +90673,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "pages_representationspage_representationspage", - "confidence_score": 1.0 + "target": "pages_representationspage_representationspage" }, { "relation": "contains", @@ -90673,9 +90683,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "pages_representationspage_schema", - "confidence_score": 1.0 + "target": "pages_representationspage_schema" }, { "relation": "imports_from", @@ -90684,9 +90694,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90695,9 +90705,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "types_index_city", - "confidence_score": 1.0 + "target": "types_index_city" }, { "relation": "imports", @@ -90706,9 +90716,9 @@ "source_file": "assets/admin/pages/RepresentationsPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_representationspage", - "target": "types_index_representation", - "confidence_score": 1.0 + "target": "types_index_representation" }, { "relation": "contains", @@ -90716,9 +90726,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "pages_secretariespage_default_permissions", - "confidence_score": 1.0 + "target": "pages_secretariespage_default_permissions" }, { "relation": "contains", @@ -90726,9 +90736,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "pages_secretariespage_permission_labels", - "confidence_score": 1.0 + "target": "pages_secretariespage_permission_labels" }, { "relation": "contains", @@ -90736,9 +90746,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "pages_secretariespage_permissionsmatrix", - "confidence_score": 1.0 + "target": "pages_secretariespage_permissionsmatrix" }, { "relation": "contains", @@ -90746,9 +90756,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "pages_secretariespage_permsection", - "confidence_score": 1.0 + "target": "pages_secretariespage_permsection" }, { "relation": "contains", @@ -90756,9 +90766,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "pages_secretariespage_secretariespage", - "confidence_score": 1.0 + "target": "pages_secretariespage_secretariespage" }, { "relation": "imports_from", @@ -90767,9 +90777,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -90778,9 +90788,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "types_index_secretary", - "confidence_score": 1.0 + "target": "types_index_secretary" }, { "relation": "imports", @@ -90789,9 +90799,9 @@ "source_file": "assets/admin/pages/SecretariesPage.tsx", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_secretariespage", - "target": "types_index_secretarypermissions", - "confidence_score": 1.0 + "target": "types_index_secretarypermissions" }, { "relation": "contains", @@ -90799,9 +90809,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "pages_selectcontextpage_role_labels", - "confidence_score": 1.0 + "target": "pages_selectcontextpage_role_labels" }, { "relation": "contains", @@ -90809,9 +90819,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "pages_selectcontextpage_selectcontextpage", - "confidence_score": 1.0 + "target": "pages_selectcontextpage_selectcontextpage" }, { "relation": "contains", @@ -90819,9 +90829,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "pages_selectcontextpage_type_icons", - "confidence_score": 1.0 + "target": "pages_selectcontextpage_type_icons" }, { "relation": "imports_from", @@ -90830,9 +90840,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -90841,9 +90851,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "stores_authstore_contextitem", - "confidence_score": 1.0 + "target": "stores_authstore_contextitem" }, { "relation": "imports", @@ -90852,9 +90862,9 @@ "source_file": "assets/admin/pages/SelectContextPage.tsx", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_selectcontextpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -90873,9 +90883,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_formvalues", - "confidence_score": 1.0 + "target": "pages_settingspage_formvalues" }, { "relation": "contains", @@ -90883,9 +90893,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_schema", - "confidence_score": 1.0 + "target": "pages_settingspage_schema" }, { "relation": "contains", @@ -90893,9 +90903,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_settings", - "confidence_score": 1.0 + "target": "pages_settingspage_settings" }, { "relation": "contains", @@ -90903,9 +90913,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_settingspage", - "confidence_score": 1.0 + "target": "pages_settingspage_settingspage" }, { "relation": "contains", @@ -90913,9 +90923,9 @@ "source_file": "assets/admin/pages/SettingsPage.tsx", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settingspage", - "target": "pages_settingspage_taxhistoryrow", - "confidence_score": 1.0 + "target": "pages_settingspage_taxhistoryrow" }, { "relation": "contains", @@ -90923,9 +90933,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "pages_settlementdetailpage_row", - "confidence_score": 1.0 + "target": "pages_settlementdetailpage_row" }, { "relation": "contains", @@ -90933,9 +90943,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "pages_settlementdetailpage_settlementdetail", - "confidence_score": 1.0 + "target": "pages_settlementdetailpage_settlementdetail" }, { "relation": "contains", @@ -90943,9 +90953,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "pages_settlementdetailpage_settlementdetailpage", - "confidence_score": 1.0 + "target": "pages_settlementdetailpage_settlementdetailpage" }, { "relation": "imports_from", @@ -90954,9 +90964,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "stores_authstore", - "confidence_score": 1.0 + "target": "stores_authstore" }, { "relation": "imports", @@ -90965,9 +90975,9 @@ "source_file": "assets/admin/pages/SettlementDetailPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementdetailpage", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -90986,9 +90996,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "pages_settlementspage_settlementspage", - "confidence_score": 1.0 + "target": "pages_settlementspage_settlementspage" }, { "relation": "contains", @@ -90996,9 +91006,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "pages_settlementspage_status_filters", - "confidence_score": 1.0 + "target": "pages_settlementspage_status_filters" }, { "relation": "imports_from", @@ -91007,9 +91017,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -91018,9 +91028,9 @@ "source_file": "assets/admin/pages/SettlementsPage.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_settlementspage", - "target": "types_index_settlement", - "confidence_score": 1.0 + "target": "types_index_settlement" }, { "relation": "contains", @@ -91028,9 +91038,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_smspage", - "confidence_score": 1.0 + "target": "pages_smspage_smspage" }, { "relation": "contains", @@ -91038,9 +91048,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_status_log_meta", - "confidence_score": 1.0 + "target": "pages_smspage_status_log_meta" }, { "relation": "contains", @@ -91048,9 +91058,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_tab", - "confidence_score": 1.0 + "target": "pages_smspage_tab" }, { "relation": "contains", @@ -91058,9 +91068,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_tag_filter_options", - "confidence_score": 1.0 + "target": "pages_smspage_tag_filter_options" }, { "relation": "contains", @@ -91068,9 +91078,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_tag_labels", - "confidence_score": 1.0 + "target": "pages_smspage_tag_labels" }, { "relation": "contains", @@ -91078,9 +91088,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_templateformdata", - "confidence_score": 1.0 + "target": "pages_smspage_templateformdata" }, { "relation": "contains", @@ -91088,9 +91098,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "pages_smspage_templateschema", - "confidence_score": 1.0 + "target": "pages_smspage_templateschema" }, { "relation": "imports_from", @@ -91099,9 +91109,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -91110,9 +91120,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "types_index_smslog", - "confidence_score": 1.0 + "target": "types_index_smslog" }, { "relation": "imports", @@ -91121,9 +91131,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "types_index_smsmessagetext", - "confidence_score": 1.0 + "target": "types_index_smsmessagetext" }, { "relation": "imports", @@ -91132,9 +91142,9 @@ "source_file": "assets/admin/pages/SmsPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smspage", - "target": "types_index_smstemplate", - "confidence_score": 1.0 + "target": "types_index_smstemplate" }, { "relation": "contains", @@ -91142,9 +91152,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_chargeform", - "confidence_score": 1.0 + "target": "pages_smswalletpage_chargeform" }, { "relation": "contains", @@ -91152,9 +91162,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_chargeschema", - "confidence_score": 1.0 + "target": "pages_smswalletpage_chargeschema" }, { "relation": "contains", @@ -91162,9 +91172,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_empty_logs", - "confidence_score": 1.0 + "target": "pages_smswalletpage_empty_logs" }, { "relation": "contains", @@ -91172,9 +91182,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_post_visit_vars", - "confidence_score": 1.0 + "target": "pages_smswalletpage_post_visit_vars" }, { "relation": "contains", @@ -91182,9 +91192,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_reminder_hour_options", - "confidence_score": 1.0 + "target": "pages_smswalletpage_reminder_hour_options" }, { "relation": "contains", @@ -91192,9 +91202,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L540", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_smswalletpage", - "confidence_score": 1.0 + "target": "pages_smswalletpage_smswalletpage" }, { "relation": "contains", @@ -91202,9 +91212,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "pages_smswalletpage_smswalletpageinner", - "confidence_score": 1.0 + "target": "pages_smswalletpage_smswalletpageinner" }, { "relation": "imports_from", @@ -91213,9 +91223,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -91224,9 +91234,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "types_index_smssettings", - "confidence_score": 1.0 + "target": "types_index_smssettings" }, { "relation": "imports", @@ -91235,9 +91245,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "types_index_smswalletbalance", - "confidence_score": 1.0 + "target": "types_index_smswalletbalance" }, { "relation": "imports", @@ -91246,9 +91256,9 @@ "source_file": "assets/admin/pages/SmsWalletPage.tsx", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_smswalletpage", - "target": "types_index_smswalletlog", - "confidence_score": 1.0 + "target": "types_index_smswalletlog" }, { "relation": "contains", @@ -91256,9 +91266,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "pages_staffpage_empty", - "confidence_score": 1.0 + "target": "pages_staffpage_empty" }, { "relation": "contains", @@ -91266,9 +91276,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "pages_staffpage_schema", - "confidence_score": 1.0 + "target": "pages_staffpage_schema" }, { "relation": "contains", @@ -91276,9 +91286,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "pages_staffpage_staffformdata", - "confidence_score": 1.0 + "target": "pages_staffpage_staffformdata" }, { "relation": "contains", @@ -91286,9 +91296,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "pages_staffpage_staffformfields", - "confidence_score": 1.0 + "target": "pages_staffpage_staffformfields" }, { "relation": "contains", @@ -91296,9 +91306,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "pages_staffpage_staffpage", - "confidence_score": 1.0 + "target": "pages_staffpage_staffpage" }, { "relation": "imports_from", @@ -91307,9 +91317,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -91318,9 +91328,9 @@ "source_file": "assets/admin/pages/StaffPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_staffpage", - "target": "types_index_clinicstaff", - "confidence_score": 1.0 + "target": "types_index_clinicstaff" }, { "relation": "contains", @@ -91328,9 +91338,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_gateway_labels", - "confidence_score": 1.0 + "target": "pages_subscriptionpage_gateway_labels" }, { "relation": "contains", @@ -91338,9 +91348,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_plan_feature_labels", - "confidence_score": 1.0 + "target": "pages_subscriptionpage_plan_feature_labels" }, { "relation": "contains", @@ -91348,9 +91358,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_plan_meta", - "confidence_score": 1.0 + "target": "pages_subscriptionpage_plan_meta" }, { "relation": "contains", @@ -91358,9 +91368,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L380", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_plancard", - "confidence_score": 1.0 + "target": "pages_subscriptionpage_plancard" }, { "relation": "contains", @@ -91368,9 +91378,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_subscriptionpage", - "confidence_score": 1.0 + "target": "pages_subscriptionpage_subscriptionpage" }, { "relation": "imports_from", @@ -91379,9 +91389,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "types_index", - "confidence_score": 1.0 + "target": "types_index" }, { "relation": "imports", @@ -91390,9 +91400,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "types_index_mysubscriptiondata", - "confidence_score": 1.0 + "target": "types_index_mysubscriptiondata" }, { "relation": "imports", @@ -91401,9 +91411,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "types_index_subscriptionperiod", - "confidence_score": 1.0 + "target": "types_index_subscriptionperiod" }, { "relation": "imports", @@ -91412,9 +91422,9 @@ "source_file": "assets/admin/pages/SubscriptionPage.tsx", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_subscriptionpage", - "target": "types_index_subscriptionplan", - "confidence_score": 1.0 + "target": "types_index_subscriptionplan" }, { "relation": "contains", @@ -91422,9 +91432,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_adminuserdetail", - "confidence_score": 1.0 + "target": "pages_userdetailpage_adminuserdetail" }, { "relation": "contains", @@ -91432,9 +91442,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_avatar_colors", - "confidence_score": 1.0 + "target": "pages_userdetailpage_avatar_colors" }, { "relation": "contains", @@ -91442,9 +91452,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_bigavatar", - "confidence_score": 1.0 + "target": "pages_userdetailpage_bigavatar" }, { "relation": "contains", @@ -91452,9 +91462,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_changerolemodal", - "confidence_score": 1.0 + "target": "pages_userdetailpage_changerolemodal" }, { "relation": "contains", @@ -91462,9 +91472,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_editform", - "confidence_score": 1.0 + "target": "pages_userdetailpage_editform" }, { "relation": "contains", @@ -91472,9 +91482,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_editschema", - "confidence_score": 1.0 + "target": "pages_userdetailpage_editschema" }, { "relation": "contains", @@ -91482,9 +91492,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_gender_labels", - "confidence_score": 1.0 + "target": "pages_userdetailpage_gender_labels" }, { "relation": "contains", @@ -91492,9 +91502,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_getprimaryrole", - "confidence_score": 1.0 + "target": "pages_userdetailpage_getprimaryrole" }, { "relation": "contains", @@ -91502,9 +91512,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_infocard", - "confidence_score": 1.0 + "target": "pages_userdetailpage_infocard" }, { "relation": "contains", @@ -91512,9 +91522,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_marital_labels", - "confidence_score": 1.0 + "target": "pages_userdetailpage_marital_labels" }, { "relation": "contains", @@ -91522,9 +91532,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_medical_sections", - "confidence_score": 1.0 + "target": "pages_userdetailpage_medical_sections" }, { "relation": "contains", @@ -91532,9 +91542,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_role_map", - "confidence_score": 1.0 + "target": "pages_userdetailpage_role_map" }, { "relation": "contains", @@ -91542,9 +91552,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_role_meta", - "confidence_score": 1.0 + "target": "pages_userdetailpage_role_meta" }, { "relation": "contains", @@ -91552,9 +91562,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_userdetailpage", - "confidence_score": 1.0 + "target": "pages_userdetailpage_userdetailpage" }, { "relation": "contains", @@ -91562,9 +91572,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage", - "target": "pages_userdetailpage_userprofiledata", - "confidence_score": 1.0 + "target": "pages_userdetailpage_userprofiledata" }, { "relation": "calls", @@ -91573,9 +91583,9 @@ "source_file": "assets/admin/pages/UserDetailPage.tsx", "source_location": "L336", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userdetailpage_userdetailpage", - "target": "pages_userdetailpage_getprimaryrole", - "confidence_score": 1.0 + "target": "pages_userdetailpage_getprimaryrole" }, { "relation": "contains", @@ -91583,9 +91593,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_activebadge", - "confidence_score": 1.0 + "target": "pages_userspage_activebadge" }, { "relation": "contains", @@ -91593,9 +91603,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_adminuser", - "confidence_score": 1.0 + "target": "pages_userspage_adminuser" }, { "relation": "contains", @@ -91603,9 +91613,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_changerolemodal", - "confidence_score": 1.0 + "target": "pages_userspage_changerolemodal" }, { "relation": "contains", @@ -91613,9 +91623,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_getprimaryrole", - "confidence_score": 1.0 + "target": "pages_userspage_getprimaryrole" }, { "relation": "contains", @@ -91623,9 +91633,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_hues_list", - "confidence_score": 1.0 + "target": "pages_userspage_hues_list" }, { "relation": "contains", @@ -91633,9 +91643,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_role_meta", - "confidence_score": 1.0 + "target": "pages_userspage_role_meta" }, { "relation": "contains", @@ -91643,9 +91653,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_role_tabs", - "confidence_score": 1.0 + "target": "pages_userspage_role_tabs" }, { "relation": "contains", @@ -91653,9 +91663,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_rolebadge", - "confidence_score": 1.0 + "target": "pages_userspage_rolebadge" }, { "relation": "contains", @@ -91663,9 +91673,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_useravatar", - "confidence_score": 1.0 + "target": "pages_userspage_useravatar" }, { "relation": "contains", @@ -91673,9 +91683,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_userspage", - "confidence_score": 1.0 + "target": "pages_userspage_userspage" }, { "relation": "contains", @@ -91683,9 +91693,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage", - "target": "pages_userspage_userstats", - "confidence_score": 1.0 + "target": "pages_userspage_userstats" }, { "relation": "calls", @@ -91694,9 +91704,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage_changerolemodal", - "target": "pages_userspage_getprimaryrole", - "confidence_score": 1.0 + "target": "pages_userspage_getprimaryrole" }, { "relation": "calls", @@ -91705,9 +91715,9 @@ "source_file": "assets/admin/pages/UsersPage.tsx", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "pages_userspage_rolebadge", - "target": "pages_userspage_getprimaryrole", - "confidence_score": 1.0 + "target": "pages_userspage_getprimaryrole" }, { "relation": "contains", @@ -91715,9 +91725,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore", - "target": "stores_authstore_apifetch", - "confidence_score": 1.0 + "target": "stores_authstore_apifetch" }, { "relation": "contains", @@ -91725,9 +91735,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore", - "target": "stores_authstore_authstate", - "confidence_score": 1.0 + "target": "stores_authstore_authstate" }, { "relation": "contains", @@ -91735,9 +91745,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore", - "target": "stores_authstore_contextitem", - "confidence_score": 1.0 + "target": "stores_authstore_contextitem" }, { "relation": "contains", @@ -91745,9 +91755,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore", - "target": "stores_authstore_gettoken", - "confidence_score": 1.0 + "target": "stores_authstore_gettoken" }, { "relation": "contains", @@ -91755,9 +91765,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore", - "target": "stores_authstore_useauthstore", - "confidence_score": 1.0 + "target": "stores_authstore_useauthstore" }, { "relation": "calls", @@ -91766,9 +91776,9 @@ "source_file": "assets/admin/stores/authStore.ts", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_authstore_apifetch", - "target": "stores_authstore_gettoken", - "confidence_score": 1.0 + "target": "stores_authstore_gettoken" }, { "relation": "contains", @@ -91776,9 +91786,9 @@ "source_file": "assets/admin/stores/uiStore.ts", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_uistore", - "target": "stores_uistore_applytheme", - "confidence_score": 1.0 + "target": "stores_uistore_applytheme" }, { "relation": "contains", @@ -91786,9 +91796,9 @@ "source_file": "assets/admin/stores/uiStore.ts", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_uistore", - "target": "stores_uistore_brandhue", - "confidence_score": 1.0 + "target": "stores_uistore_brandhue" }, { "relation": "contains", @@ -91796,9 +91806,9 @@ "source_file": "assets/admin/stores/uiStore.ts", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_uistore", - "target": "stores_uistore_hues", - "confidence_score": 1.0 + "target": "stores_uistore_hues" }, { "relation": "contains", @@ -91806,9 +91816,9 @@ "source_file": "assets/admin/stores/uiStore.ts", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_uistore", - "target": "stores_uistore_uistate", - "confidence_score": 1.0 + "target": "stores_uistore_uistate" }, { "relation": "contains", @@ -91816,9 +91826,9 @@ "source_file": "assets/admin/stores/uiStore.ts", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "stores_uistore", - "target": "stores_uistore_useuistore", - "confidence_score": 1.0 + "target": "stores_uistore_useuistore" }, { "relation": "contains", @@ -91826,9 +91836,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_appointment", - "confidence_score": 1.0 + "target": "types_index_appointment" }, { "relation": "contains", @@ -91836,9 +91846,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_appointmentstatus", - "confidence_score": 1.0 + "target": "types_index_appointmentstatus" }, { "relation": "contains", @@ -91846,9 +91856,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_blog", - "confidence_score": 1.0 + "target": "types_index_blog" }, { "relation": "contains", @@ -91856,9 +91866,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_city", - "confidence_score": 1.0 + "target": "types_index_city" }, { "relation": "contains", @@ -91866,9 +91876,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_clinic", - "confidence_score": 1.0 + "target": "types_index_clinic" }, { "relation": "contains", @@ -91876,9 +91886,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_clinicdetail", - "confidence_score": 1.0 + "target": "types_index_clinicdetail" }, { "relation": "contains", @@ -91886,9 +91896,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L332", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_clinicstaff", - "confidence_score": 1.0 + "target": "types_index_clinicstaff" }, { "relation": "contains", @@ -91896,9 +91906,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_comment", - "confidence_score": 1.0 + "target": "types_index_comment" }, { "relation": "contains", @@ -91906,9 +91916,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_doctor", - "confidence_score": 1.0 + "target": "types_index_doctor" }, { "relation": "contains", @@ -91916,9 +91926,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_doctorservice", - "confidence_score": 1.0 + "target": "types_index_doctorservice" }, { "relation": "contains", @@ -91926,9 +91936,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_insurance", - "confidence_score": 1.0 + "target": "types_index_insurance" }, { "relation": "contains", @@ -91936,9 +91946,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_mysubscription", - "confidence_score": 1.0 + "target": "types_index_mysubscription" }, { "relation": "contains", @@ -91946,9 +91956,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L360", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_mysubscriptiondata", - "confidence_score": 1.0 + "target": "types_index_mysubscriptiondata" }, { "relation": "contains", @@ -91956,9 +91966,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L427", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_patientprofile", - "confidence_score": 1.0 + "target": "types_index_patientprofile" }, { "relation": "contains", @@ -91966,9 +91976,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_patientrecord", - "confidence_score": 1.0 + "target": "types_index_patientrecord" }, { "relation": "contains", @@ -91976,9 +91986,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L455", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_patientsession", - "confidence_score": 1.0 + "target": "types_index_patientsession" }, { "relation": "contains", @@ -91986,9 +91996,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_payment", - "confidence_score": 1.0 + "target": "types_index_payment" }, { "relation": "contains", @@ -91996,9 +92006,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_paymentgateway", - "confidence_score": 1.0 + "target": "types_index_paymentgateway" }, { "relation": "contains", @@ -92006,9 +92016,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_paymentstatus", - "confidence_score": 1.0 + "target": "types_index_paymentstatus" }, { "relation": "contains", @@ -92016,9 +92026,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_province", - "confidence_score": 1.0 + "target": "types_index_province" }, { "relation": "contains", @@ -92026,9 +92036,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_rating", - "confidence_score": 1.0 + "target": "types_index_rating" }, { "relation": "contains", @@ -92036,9 +92046,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_representation", - "confidence_score": 1.0 + "target": "types_index_representation" }, { "relation": "contains", @@ -92046,9 +92056,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_secretary", - "confidence_score": 1.0 + "target": "types_index_secretary" }, { "relation": "contains", @@ -92056,9 +92066,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L300", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_secretarypermissions", - "confidence_score": 1.0 + "target": "types_index_secretarypermissions" }, { "relation": "contains", @@ -92066,9 +92076,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L393", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_serviceitem", - "confidence_score": 1.0 + "target": "types_index_serviceitem" }, { "relation": "contains", @@ -92076,9 +92086,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L387", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_servicesection", - "confidence_score": 1.0 + "target": "types_index_servicesection" }, { "relation": "contains", @@ -92086,9 +92096,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_settlement", - "confidence_score": 1.0 + "target": "types_index_settlement" }, { "relation": "contains", @@ -92096,9 +92106,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_settlementstatus", - "confidence_score": 1.0 + "target": "types_index_settlementstatus" }, { "relation": "contains", @@ -92106,9 +92116,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smslog", - "confidence_score": 1.0 + "target": "types_index_smslog" }, { "relation": "contains", @@ -92116,9 +92126,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smsmessagetext", - "confidence_score": 1.0 + "target": "types_index_smsmessagetext" }, { "relation": "contains", @@ -92126,9 +92136,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smssettings", - "confidence_score": 1.0 + "target": "types_index_smssettings" }, { "relation": "contains", @@ -92136,9 +92146,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smstemplate", - "confidence_score": 1.0 + "target": "types_index_smstemplate" }, { "relation": "contains", @@ -92146,9 +92156,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smstemplatestatus", - "confidence_score": 1.0 + "target": "types_index_smstemplatestatus" }, { "relation": "contains", @@ -92156,9 +92166,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L403", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smswalletbalance", - "confidence_score": 1.0 + "target": "types_index_smswalletbalance" }, { "relation": "contains", @@ -92166,9 +92176,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L409", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_smswalletlog", - "confidence_score": 1.0 + "target": "types_index_smswalletlog" }, { "relation": "contains", @@ -92176,9 +92186,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L325", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_specialty", - "confidence_score": 1.0 + "target": "types_index_specialty" }, { "relation": "contains", @@ -92186,9 +92196,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L238", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_specialtyfull", - "confidence_score": 1.0 + "target": "types_index_specialtyfull" }, { "relation": "contains", @@ -92196,9 +92206,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L352", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_subscriptionperiod", - "confidence_score": 1.0 + "target": "types_index_subscriptionperiod" }, { "relation": "contains", @@ -92206,9 +92216,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L343", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_subscriptionplan", - "confidence_score": 1.0 + "target": "types_index_subscriptionplan" }, { "relation": "contains", @@ -92216,9 +92226,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L267", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_tag", - "confidence_score": 1.0 + "target": "types_index_tag" }, { "relation": "contains", @@ -92226,9 +92236,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_user", - "confidence_score": 1.0 + "target": "types_index_user" }, { "relation": "contains", @@ -92236,9 +92246,9 @@ "source_file": "assets/admin/types/index.ts", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "types_index", - "target": "types_index_userprofile", - "confidence_score": 1.0 + "target": "types_index_userprofile" }, { "relation": "imports_from", @@ -92247,9 +92257,9 @@ "source_file": "assets/app.js", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "assets_app", - "target": "assets_stimulus_bootstrap", - "confidence_score": 1.0 + "target": "assets_stimulus_bootstrap" }, { "relation": "contains", @@ -92257,9 +92267,9 @@ "source_file": "assets/controllers/csrf_protection_controller.js", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controllers_csrf_protection_controller", - "target": "controllers_csrf_protection_controller_generatecsrfheaders", - "confidence_score": 1.0 + "target": "controllers_csrf_protection_controller_generatecsrfheaders" }, { "relation": "contains", @@ -92267,9 +92277,9 @@ "source_file": "assets/controllers/csrf_protection_controller.js", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controllers_csrf_protection_controller", - "target": "controllers_csrf_protection_controller_generatecsrftoken", - "confidence_score": 1.0 + "target": "controllers_csrf_protection_controller_generatecsrftoken" }, { "relation": "contains", @@ -92277,9 +92287,9 @@ "source_file": "assets/controllers/csrf_protection_controller.js", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "controllers_csrf_protection_controller", - "target": "controllers_csrf_protection_controller_removecsrftoken", - "confidence_score": 1.0 + "target": "controllers_csrf_protection_controller_removecsrftoken" }, { "relation": "contains", @@ -92287,9 +92297,9 @@ "source_file": "assets/controllers/hello_controller.js", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controllers_hello_controller", - "target": "controllers_hello_controller_connect", - "confidence_score": 1.0 + "target": "controllers_hello_controller_connect" }, { "relation": "contains", @@ -92297,9 +92307,9 @@ "source_file": "assets/stimulus_bootstrap.js", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "assets_stimulus_bootstrap", - "target": "assets_stimulus_bootstrap_app", - "confidence_score": 1.0 + "target": "assets_stimulus_bootstrap_app" }, { "relation": "contains", @@ -92307,9 +92317,9 @@ "source_file": "composer.json", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_autoload", - "confidence_score": 1.0 + "target": "composer_autoload" }, { "relation": "contains", @@ -92317,9 +92327,9 @@ "source_file": "composer.json", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_autoload_dev", - "confidence_score": 1.0 + "target": "composer_autoload_dev" }, { "relation": "contains", @@ -92327,9 +92337,9 @@ "source_file": "composer.json", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_config", - "confidence_score": 1.0 + "target": "composer_config" }, { "relation": "contains", @@ -92337,9 +92347,9 @@ "source_file": "composer.json", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_conflict", - "confidence_score": 1.0 + "target": "composer_conflict" }, { "relation": "contains", @@ -92347,9 +92357,9 @@ "source_file": "composer.json", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_description", - "confidence_score": 1.0 + "target": "composer_description" }, { "relation": "contains", @@ -92357,9 +92367,9 @@ "source_file": "composer.json", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_extra", - "confidence_score": 1.0 + "target": "composer_extra" }, { "relation": "contains", @@ -92367,9 +92377,9 @@ "source_file": "composer.json", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_license", - "confidence_score": 1.0 + "target": "composer_license" }, { "relation": "contains", @@ -92377,9 +92387,9 @@ "source_file": "composer.json", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_minimum_stability", - "confidence_score": 1.0 + "target": "composer_minimum_stability" }, { "relation": "contains", @@ -92387,9 +92397,9 @@ "source_file": "composer.json", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_name", - "confidence_score": 1.0 + "target": "composer_name" }, { "relation": "contains", @@ -92397,9 +92407,9 @@ "source_file": "composer.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_prefer_stable", - "confidence_score": 1.0 + "target": "composer_prefer_stable" }, { "relation": "contains", @@ -92407,9 +92417,9 @@ "source_file": "composer.json", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_replace", - "confidence_score": 1.0 + "target": "composer_replace" }, { "relation": "contains", @@ -92417,9 +92427,9 @@ "source_file": "composer.json", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_require", - "confidence_score": 1.0 + "target": "composer_require" }, { "relation": "contains", @@ -92427,9 +92437,9 @@ "source_file": "composer.json", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_require_dev", - "confidence_score": 1.0 + "target": "composer_require_dev" }, { "relation": "contains", @@ -92437,9 +92447,9 @@ "source_file": "composer.json", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_scripts", - "confidence_score": 1.0 + "target": "composer_scripts" }, { "relation": "contains", @@ -92447,9 +92457,9 @@ "source_file": "composer.json", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "composer", - "target": "composer_type", - "confidence_score": 1.0 + "target": "composer_type" }, { "relation": "contains", @@ -92457,9 +92467,9 @@ "source_file": "composer.json", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_doctrine_doctrine_bundle", - "confidence_score": 1.0 + "target": "composer_require_doctrine_doctrine_bundle" }, { "relation": "contains", @@ -92467,9 +92477,9 @@ "source_file": "composer.json", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_doctrine_doctrine_migrations_bundle", - "confidence_score": 1.0 + "target": "composer_require_doctrine_doctrine_migrations_bundle" }, { "relation": "contains", @@ -92477,9 +92487,9 @@ "source_file": "composer.json", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_doctrine_orm", - "confidence_score": 1.0 + "target": "composer_require_doctrine_orm" }, { "relation": "contains", @@ -92487,9 +92497,9 @@ "source_file": "composer.json", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_ext_ctype", - "confidence_score": 1.0 + "target": "composer_require_ext_ctype" }, { "relation": "contains", @@ -92497,9 +92507,9 @@ "source_file": "composer.json", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_ext_iconv", - "confidence_score": 1.0 + "target": "composer_require_ext_iconv" }, { "relation": "contains", @@ -92507,9 +92517,9 @@ "source_file": "composer.json", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_lexik_jwt_authentication_bundle", - "confidence_score": 1.0 + "target": "composer_require_lexik_jwt_authentication_bundle" }, { "relation": "contains", @@ -92517,9 +92527,9 @@ "source_file": "composer.json", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_nelmio_api_doc_bundle", - "confidence_score": 1.0 + "target": "composer_require_nelmio_api_doc_bundle" }, { "relation": "contains", @@ -92527,9 +92537,9 @@ "source_file": "composer.json", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_nelmio_cors_bundle", - "confidence_score": 1.0 + "target": "composer_require_nelmio_cors_bundle" }, { "relation": "contains", @@ -92537,9 +92547,9 @@ "source_file": "composer.json", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_php", - "confidence_score": 1.0 + "target": "composer_require_php" }, { "relation": "contains", @@ -92547,9 +92557,9 @@ "source_file": "composer.json", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_asset", - "confidence_score": 1.0 + "target": "composer_require_symfony_asset" }, { "relation": "contains", @@ -92557,9 +92567,9 @@ "source_file": "composer.json", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_cache", - "confidence_score": 1.0 + "target": "composer_require_symfony_cache" }, { "relation": "contains", @@ -92567,9 +92577,9 @@ "source_file": "composer.json", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_console", - "confidence_score": 1.0 + "target": "composer_require_symfony_console" }, { "relation": "contains", @@ -92577,9 +92587,9 @@ "source_file": "composer.json", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_dotenv", - "confidence_score": 1.0 + "target": "composer_require_symfony_dotenv" }, { "relation": "contains", @@ -92587,9 +92597,9 @@ "source_file": "composer.json", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_flex", - "confidence_score": 1.0 + "target": "composer_require_symfony_flex" }, { "relation": "contains", @@ -92597,9 +92607,9 @@ "source_file": "composer.json", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_framework_bundle", - "confidence_score": 1.0 + "target": "composer_require_symfony_framework_bundle" }, { "relation": "contains", @@ -92607,9 +92617,9 @@ "source_file": "composer.json", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_http_client", - "confidence_score": 1.0 + "target": "composer_require_symfony_http_client" }, { "relation": "contains", @@ -92617,9 +92627,9 @@ "source_file": "composer.json", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_messenger", - "confidence_score": 1.0 + "target": "composer_require_symfony_messenger" }, { "relation": "contains", @@ -92627,9 +92637,9 @@ "source_file": "composer.json", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_property_access", - "confidence_score": 1.0 + "target": "composer_require_symfony_property_access" }, { "relation": "contains", @@ -92637,9 +92647,9 @@ "source_file": "composer.json", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_property_info", - "confidence_score": 1.0 + "target": "composer_require_symfony_property_info" }, { "relation": "contains", @@ -92647,9 +92657,9 @@ "source_file": "composer.json", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_rate_limiter", - "confidence_score": 1.0 + "target": "composer_require_symfony_rate_limiter" }, { "relation": "contains", @@ -92657,9 +92667,9 @@ "source_file": "composer.json", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_runtime", - "confidence_score": 1.0 + "target": "composer_require_symfony_runtime" }, { "relation": "contains", @@ -92667,9 +92677,9 @@ "source_file": "composer.json", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_scheduler", - "confidence_score": 1.0 + "target": "composer_require_symfony_scheduler" }, { "relation": "contains", @@ -92677,9 +92687,9 @@ "source_file": "composer.json", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_security_bundle", - "confidence_score": 1.0 + "target": "composer_require_symfony_security_bundle" }, { "relation": "contains", @@ -92687,9 +92697,9 @@ "source_file": "composer.json", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_serializer", - "confidence_score": 1.0 + "target": "composer_require_symfony_serializer" }, { "relation": "contains", @@ -92697,9 +92707,9 @@ "source_file": "composer.json", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_twig_bundle", - "confidence_score": 1.0 + "target": "composer_require_symfony_twig_bundle" }, { "relation": "contains", @@ -92707,9 +92717,9 @@ "source_file": "composer.json", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_uid", - "confidence_score": 1.0 + "target": "composer_require_symfony_uid" }, { "relation": "contains", @@ -92717,9 +92727,9 @@ "source_file": "composer.json", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_ux_react", - "confidence_score": 1.0 + "target": "composer_require_symfony_ux_react" }, { "relation": "contains", @@ -92727,9 +92737,9 @@ "source_file": "composer.json", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_validator", - "confidence_score": 1.0 + "target": "composer_require_symfony_validator" }, { "relation": "contains", @@ -92737,9 +92747,9 @@ "source_file": "composer.json", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_webpack_encore_bundle", - "confidence_score": 1.0 + "target": "composer_require_symfony_webpack_encore_bundle" }, { "relation": "contains", @@ -92747,9 +92757,9 @@ "source_file": "composer.json", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_symfony_yaml", - "confidence_score": 1.0 + "target": "composer_require_symfony_yaml" }, { "relation": "contains", @@ -92757,9 +92767,9 @@ "source_file": "composer.json", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_twig_twig", - "confidence_score": 1.0 + "target": "composer_require_twig_twig" }, { "relation": "contains", @@ -92767,9 +92777,9 @@ "source_file": "composer.json", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require", - "target": "composer_require_zircote_swagger_php", - "confidence_score": 1.0 + "target": "composer_require_zircote_swagger_php" }, { "relation": "contains", @@ -92777,9 +92787,9 @@ "source_file": "composer.json", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config", - "target": "composer_config_allow_plugins", - "confidence_score": 1.0 + "target": "composer_config_allow_plugins" }, { "relation": "contains", @@ -92787,9 +92797,9 @@ "source_file": "composer.json", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config", - "target": "composer_config_bump_after_update", - "confidence_score": 1.0 + "target": "composer_config_bump_after_update" }, { "relation": "contains", @@ -92797,9 +92807,9 @@ "source_file": "composer.json", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config", - "target": "composer_config_sort_packages", - "confidence_score": 1.0 + "target": "composer_config_sort_packages" }, { "relation": "contains", @@ -92807,9 +92817,9 @@ "source_file": "composer.json", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config_allow_plugins", - "target": "composer_allow_plugins_php_http_discovery", - "confidence_score": 1.0 + "target": "composer_allow_plugins_php_http_discovery" }, { "relation": "contains", @@ -92817,9 +92827,9 @@ "source_file": "composer.json", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config_allow_plugins", - "target": "composer_allow_plugins_symfony_flex", - "confidence_score": 1.0 + "target": "composer_allow_plugins_symfony_flex" }, { "relation": "contains", @@ -92827,9 +92837,9 @@ "source_file": "composer.json", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_config_allow_plugins", - "target": "composer_allow_plugins_symfony_runtime", - "confidence_score": 1.0 + "target": "composer_allow_plugins_symfony_runtime" }, { "relation": "contains", @@ -92837,9 +92847,9 @@ "source_file": "composer.json", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_autoload", - "target": "composer_autoload_psr_4", - "confidence_score": 1.0 + "target": "composer_autoload_psr_4" }, { "relation": "contains", @@ -92847,9 +92857,9 @@ "source_file": "composer.json", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_autoload_psr_4", - "target": "composer_psr_4_app", - "confidence_score": 1.0 + "target": "composer_psr_4_app" }, { "relation": "contains", @@ -92857,9 +92867,9 @@ "source_file": "composer.json", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_autoload_dev", - "target": "composer_autoload_dev_psr_4", - "confidence_score": 1.0 + "target": "composer_autoload_dev_psr_4" }, { "relation": "contains", @@ -92867,9 +92877,9 @@ "source_file": "composer.json", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_autoload_dev_psr_4", - "target": "composer_psr_4_app_tests", - "confidence_score": 1.0 + "target": "composer_psr_4_app_tests" }, { "relation": "contains", @@ -92877,9 +92887,9 @@ "source_file": "composer.json", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_ctype", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_ctype" }, { "relation": "contains", @@ -92887,9 +92897,9 @@ "source_file": "composer.json", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_iconv", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_iconv" }, { "relation": "contains", @@ -92897,9 +92907,9 @@ "source_file": "composer.json", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php72", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php72" }, { "relation": "contains", @@ -92907,9 +92917,9 @@ "source_file": "composer.json", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php73", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php73" }, { "relation": "contains", @@ -92917,9 +92927,9 @@ "source_file": "composer.json", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php74", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php74" }, { "relation": "contains", @@ -92927,9 +92937,9 @@ "source_file": "composer.json", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php80", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php80" }, { "relation": "contains", @@ -92937,9 +92947,9 @@ "source_file": "composer.json", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php81", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php81" }, { "relation": "contains", @@ -92947,9 +92957,9 @@ "source_file": "composer.json", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_replace", - "target": "composer_replace_symfony_polyfill_php82", - "confidence_score": 1.0 + "target": "composer_replace_symfony_polyfill_php82" }, { "relation": "contains", @@ -92957,9 +92967,9 @@ "source_file": "composer.json", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_scripts", - "target": "composer_scripts_auto_scripts", - "confidence_score": 1.0 + "target": "composer_scripts_auto_scripts" }, { "relation": "contains", @@ -92967,9 +92977,9 @@ "source_file": "composer.json", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_scripts", - "target": "composer_scripts_post_install_cmd", - "confidence_score": 1.0 + "target": "composer_scripts_post_install_cmd" }, { "relation": "contains", @@ -92977,9 +92987,9 @@ "source_file": "composer.json", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_scripts", - "target": "composer_scripts_post_update_cmd", - "confidence_score": 1.0 + "target": "composer_scripts_post_update_cmd" }, { "relation": "contains", @@ -92987,9 +92997,9 @@ "source_file": "composer.json", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_scripts_auto_scripts", - "target": "composer_auto_scripts_assets_install_public_dir", - "confidence_score": 1.0 + "target": "composer_auto_scripts_assets_install_public_dir" }, { "relation": "contains", @@ -92997,9 +93007,9 @@ "source_file": "composer.json", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_scripts_auto_scripts", - "target": "composer_auto_scripts_cache_clear", - "confidence_score": 1.0 + "target": "composer_auto_scripts_cache_clear" }, { "relation": "contains", @@ -93007,9 +93017,9 @@ "source_file": "composer.json", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_conflict", - "target": "composer_conflict_symfony_symfony", - "confidence_score": 1.0 + "target": "composer_conflict_symfony_symfony" }, { "relation": "contains", @@ -93017,9 +93027,9 @@ "source_file": "composer.json", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_extra", - "target": "composer_extra_symfony", - "confidence_score": 1.0 + "target": "composer_extra_symfony" }, { "relation": "contains", @@ -93027,9 +93037,9 @@ "source_file": "composer.json", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_extra_symfony", - "target": "composer_symfony_allow_contrib", - "confidence_score": 1.0 + "target": "composer_symfony_allow_contrib" }, { "relation": "contains", @@ -93037,9 +93047,9 @@ "source_file": "composer.json", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_extra_symfony", - "target": "composer_symfony_require", - "confidence_score": 1.0 + "target": "composer_symfony_require" }, { "relation": "contains", @@ -93047,9 +93057,9 @@ "source_file": "composer.json", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_phpstan_phpstan", - "confidence_score": 1.0 + "target": "composer_require_dev_phpstan_phpstan" }, { "relation": "contains", @@ -93057,9 +93067,9 @@ "source_file": "composer.json", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_phpstan_phpstan_doctrine", - "confidence_score": 1.0 + "target": "composer_require_dev_phpstan_phpstan_doctrine" }, { "relation": "contains", @@ -93067,9 +93077,9 @@ "source_file": "composer.json", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_phpstan_phpstan_symfony", - "confidence_score": 1.0 + "target": "composer_require_dev_phpstan_phpstan_symfony" }, { "relation": "contains", @@ -93077,9 +93087,9 @@ "source_file": "composer.json", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_phpunit_phpunit", - "confidence_score": 1.0 + "target": "composer_require_dev_phpunit_phpunit" }, { "relation": "contains", @@ -93087,9 +93097,9 @@ "source_file": "composer.json", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_symfony_browser_kit", - "confidence_score": 1.0 + "target": "composer_require_dev_symfony_browser_kit" }, { "relation": "contains", @@ -93097,9 +93107,9 @@ "source_file": "composer.json", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_symfony_css_selector", - "confidence_score": 1.0 + "target": "composer_require_dev_symfony_css_selector" }, { "relation": "contains", @@ -93107,9 +93117,9 @@ "source_file": "composer.json", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_symfony_debug_bundle", - "confidence_score": 1.0 + "target": "composer_require_dev_symfony_debug_bundle" }, { "relation": "contains", @@ -93117,9 +93127,9 @@ "source_file": "composer.json", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "composer_require_dev", - "target": "composer_require_dev_symfony_maker_bundle", - "confidence_score": 1.0 + "target": "composer_require_dev_symfony_maker_bundle" }, { "relation": "contains", @@ -93127,9 +93137,9 @@ "source_file": "config/reference.php", "source_location": "L1563", "weight": 1.0, + "confidence_score": 1.0, "source": "config_reference", - "target": "config_reference_app", - "confidence_score": 1.0 + "target": "config_reference_app" }, { "relation": "contains", @@ -93137,9 +93147,9 @@ "source_file": "config/reference.php", "source_location": "L1643", "weight": 1.0, + "confidence_score": 1.0, "source": "config_reference", - "target": "config_reference_routes", - "confidence_score": 1.0 + "target": "config_reference_routes" }, { "relation": "method", @@ -93147,9 +93157,9 @@ "source_file": "config/reference.php", "source_location": "L1570", "weight": 1.0, + "confidence_score": 1.0, "source": "config_reference_app", - "target": "config_reference_app_config", - "confidence_score": 1.0 + "target": "config_reference_app_config" }, { "relation": "method", @@ -93157,9 +93167,9 @@ "source_file": "config/reference.php", "source_location": "L1650", "weight": 1.0, + "confidence_score": 1.0, "source": "config_reference_routes", - "target": "config_reference_routes_config", - "confidence_score": 1.0 + "target": "config_reference_routes_config" }, { "relation": "contains", @@ -93167,9 +93177,9 @@ "source_file": "create_test_users.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "create_test_users", - "target": "create_test_users_makeuser", - "confidence_score": 1.0 + "target": "create_test_users_makeuser" }, { "relation": "references", @@ -93178,9 +93188,9 @@ "source_location": "L18", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "create_test_users_makeuser", - "target": "create_test_users_php_user", - "confidence_score": 1.0 + "target": "create_test_users_php_user" }, { "relation": "contains", @@ -93188,9 +93198,9 @@ "source_file": "data/seed.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_medicalcode", - "confidence_score": 1.0 + "target": "data_seed_medicalcode" }, { "relation": "contains", @@ -93198,9 +93208,9 @@ "source_file": "data/seed.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_mobile", - "confidence_score": 1.0 + "target": "data_seed_mobile" }, { "relation": "contains", @@ -93208,9 +93218,9 @@ "source_file": "data/seed.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_nationalcode", - "confidence_score": 1.0 + "target": "data_seed_nationalcode" }, { "relation": "contains", @@ -93218,9 +93228,9 @@ "source_file": "data/seed.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_passwordhash", - "confidence_score": 1.0 + "target": "data_seed_passwordhash" }, { "relation": "contains", @@ -93228,9 +93238,9 @@ "source_file": "data/seed.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_rand_item", - "confidence_score": 1.0 + "target": "data_seed_rand_item" }, { "relation": "contains", @@ -93238,9 +93248,9 @@ "source_file": "data/seed.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_rand_items", - "confidence_score": 1.0 + "target": "data_seed_rand_items" }, { "relation": "contains", @@ -93248,9 +93258,9 @@ "source_file": "data/seed.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_uuid", - "confidence_score": 1.0 + "target": "data_seed_uuid" }, { "relation": "contains", @@ -93258,9 +93268,9 @@ "source_file": "data/seed.php", "source_location": "L341", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed", - "target": "data_seed_weightedstatus", - "confidence_score": 1.0 + "target": "data_seed_weightedstatus" }, { "relation": "calls", @@ -93269,9 +93279,9 @@ "source_file": "data/seed.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_mobile", - "target": "data_seed_rand_item", - "confidence_score": 1.0 + "target": "data_seed_rand_item" }, { "relation": "contains", @@ -93279,9 +93289,9 @@ "source_file": "data/seed_finish.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_finish", - "target": "data_seed_finish_ri", - "confidence_score": 1.0 + "target": "data_seed_finish_ri" }, { "relation": "contains", @@ -93289,9 +93299,9 @@ "source_file": "data/seed_finish.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_finish", - "target": "data_seed_finish_uuid", - "confidence_score": 1.0 + "target": "data_seed_finish_uuid" }, { "relation": "contains", @@ -93299,9 +93309,9 @@ "source_file": "data/seed_finish.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_finish", - "target": "data_seed_finish_wrand", - "confidence_score": 1.0 + "target": "data_seed_finish_wrand" }, { "relation": "contains", @@ -93309,9 +93319,9 @@ "source_file": "data/seed_full.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_downloadparallel", - "confidence_score": 1.0 + "target": "data_seed_full_downloadparallel" }, { "relation": "contains", @@ -93319,9 +93329,9 @@ "source_file": "data/seed_full.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_imgjson", - "confidence_score": 1.0 + "target": "data_seed_full_imgjson" }, { "relation": "contains", @@ -93329,9 +93339,9 @@ "source_file": "data/seed_full.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_mobile", - "confidence_score": 1.0 + "target": "data_seed_full_mobile" }, { "relation": "contains", @@ -93339,9 +93349,9 @@ "source_file": "data/seed_full.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_pw", - "confidence_score": 1.0 + "target": "data_seed_full_pw" }, { "relation": "contains", @@ -93349,9 +93359,9 @@ "source_file": "data/seed_full.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_ri", - "confidence_score": 1.0 + "target": "data_seed_full_ri" }, { "relation": "contains", @@ -93359,9 +93369,9 @@ "source_file": "data/seed_full.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_ris", - "confidence_score": 1.0 + "target": "data_seed_full_ris" }, { "relation": "contains", @@ -93369,9 +93379,9 @@ "source_file": "data/seed_full.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_uuid", - "confidence_score": 1.0 + "target": "data_seed_full_uuid" }, { "relation": "contains", @@ -93379,9 +93389,9 @@ "source_file": "data/seed_full.php", "source_location": "L546", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full", - "target": "data_seed_full_wrand", - "confidence_score": 1.0 + "target": "data_seed_full_wrand" }, { "relation": "calls", @@ -93390,9 +93400,9 @@ "source_file": "data/seed_full.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full_imgjson", - "target": "data_seed_full_uuid", - "confidence_score": 1.0 + "target": "data_seed_full_uuid" }, { "relation": "calls", @@ -93401,9 +93411,9 @@ "source_file": "data/seed_full.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "data_seed_full_mobile", - "target": "data_seed_full_ri", - "confidence_score": 1.0 + "target": "data_seed_full_ri" }, { "relation": "imports", @@ -93412,9 +93422,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93423,9 +93433,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407", - "target": "migrations_version20260609130407_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_php_schema" }, { "relation": "contains", @@ -93433,9 +93443,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407", - "target": "migrations_version20260609130407_version20260609130407", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_version20260609130407" }, { "relation": "inherits", @@ -93443,9 +93453,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "method", @@ -93453,9 +93463,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407", - "target": "migrations_version20260609130407_version20260609130407_down", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_version20260609130407_down" }, { "relation": "method", @@ -93463,9 +93473,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407", - "target": "migrations_version20260609130407_version20260609130407_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_version20260609130407_getdescription" }, { "relation": "method", @@ -93473,9 +93483,9 @@ "source_file": "migrations/Version20260609130407.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407", - "target": "migrations_version20260609130407_version20260609130407_up", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_version20260609130407_up" }, { "relation": "imports", @@ -93484,9 +93494,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93494,9 +93504,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93505,9 +93515,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93515,9 +93525,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93526,9 +93536,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93536,9 +93546,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93547,9 +93557,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93557,9 +93567,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93568,9 +93578,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93578,9 +93588,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93589,9 +93599,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93599,9 +93609,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93610,9 +93620,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93620,9 +93630,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93631,9 +93641,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93641,9 +93651,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93652,9 +93662,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93662,9 +93672,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93673,9 +93683,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93683,9 +93693,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93694,9 +93704,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93704,9 +93714,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93715,9 +93725,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93725,9 +93735,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93736,9 +93746,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93746,9 +93756,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93757,9 +93767,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93767,9 +93777,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93778,9 +93788,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93788,9 +93798,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93799,9 +93809,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93809,9 +93819,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93820,9 +93830,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93830,9 +93840,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93841,9 +93851,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93851,9 +93861,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93862,9 +93872,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93872,9 +93882,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93883,9 +93893,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93893,9 +93903,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93904,9 +93914,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93914,9 +93924,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93925,9 +93935,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93935,9 +93945,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93946,9 +93956,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93956,9 +93966,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93967,9 +93977,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93977,9 +93987,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -93988,9 +93998,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -93998,9 +94008,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94009,9 +94019,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94019,9 +94029,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94030,9 +94040,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94040,9 +94050,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94051,9 +94061,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94061,9 +94071,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94072,9 +94082,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94082,9 +94092,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94093,9 +94103,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94103,9 +94113,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94114,9 +94124,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94124,9 +94134,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94135,9 +94145,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94145,9 +94155,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94156,9 +94166,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94166,9 +94176,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94177,9 +94187,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94187,9 +94197,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94198,9 +94208,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94208,9 +94218,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94219,9 +94229,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94229,9 +94239,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94240,9 +94250,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94250,9 +94260,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94261,9 +94271,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94271,9 +94281,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94282,9 +94292,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94292,9 +94302,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94303,9 +94313,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94313,9 +94323,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94324,9 +94334,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94334,9 +94344,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94345,9 +94355,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94355,9 +94365,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94366,9 +94376,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94376,9 +94386,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94387,9 +94397,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94397,9 +94407,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94408,9 +94418,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94418,9 +94428,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94429,9 +94439,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94439,9 +94449,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94450,9 +94460,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94460,9 +94470,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94471,9 +94481,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94481,9 +94491,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94492,9 +94502,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94502,9 +94512,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94513,9 +94523,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94523,9 +94533,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94534,9 +94544,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94544,9 +94554,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94555,9 +94565,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94565,9 +94575,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94576,9 +94586,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94586,9 +94596,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94597,9 +94607,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94607,9 +94617,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94618,9 +94628,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94628,9 +94638,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94639,9 +94649,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94649,9 +94659,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94660,9 +94670,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94670,9 +94680,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94681,9 +94691,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94691,9 +94701,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94702,9 +94712,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94712,9 +94722,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94723,9 +94733,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94733,9 +94743,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "imports", @@ -94744,9 +94754,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "inherits", @@ -94754,9 +94764,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304", - "target": "abstractmigration", - "confidence_score": 1.0 + "target": "abstractmigration" }, { "relation": "references", @@ -94765,9 +94775,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407_up", - "target": "migrations_version20260609130407_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_php_schema" }, { "relation": "references", @@ -94776,9 +94786,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609130407_version20260609130407_down", - "target": "migrations_version20260609130407_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609130407_php_schema" }, { "relation": "imports", @@ -94787,9 +94797,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304", - "target": "migrations_version20260609131304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_php_schema" }, { "relation": "contains", @@ -94797,9 +94807,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304", - "target": "migrations_version20260609131304_version20260609131304", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304" }, { "relation": "method", @@ -94807,9 +94817,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304", - "target": "migrations_version20260609131304_version20260609131304_down", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304_down" }, { "relation": "method", @@ -94817,9 +94827,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304", - "target": "migrations_version20260609131304_version20260609131304_genuuid", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304_genuuid" }, { "relation": "method", @@ -94827,9 +94837,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304", - "target": "migrations_version20260609131304_version20260609131304_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304_getdescription" }, { "relation": "method", @@ -94837,9 +94847,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304", - "target": "migrations_version20260609131304_version20260609131304_up", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304_up" }, { "relation": "references", @@ -94848,9 +94858,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304_up", - "target": "migrations_version20260609131304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_php_schema" }, { "relation": "calls", @@ -94859,9 +94869,9 @@ "source_file": "migrations/Version20260609131304.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304_up", - "target": "migrations_version20260609131304_version20260609131304_genuuid", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_version20260609131304_genuuid" }, { "relation": "references", @@ -94870,9 +94880,9 @@ "source_location": "L155", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609131304_version20260609131304_down", - "target": "migrations_version20260609131304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131304_php_schema" }, { "relation": "imports", @@ -94881,9 +94891,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553", - "target": "migrations_version20260609131553_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_php_schema" }, { "relation": "contains", @@ -94891,9 +94901,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553", - "target": "migrations_version20260609131553_version20260609131553", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_version20260609131553" }, { "relation": "method", @@ -94901,9 +94911,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553", - "target": "migrations_version20260609131553_version20260609131553_down", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_version20260609131553_down" }, { "relation": "method", @@ -94911,9 +94921,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553", - "target": "migrations_version20260609131553_version20260609131553_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_version20260609131553_getdescription" }, { "relation": "method", @@ -94921,9 +94931,9 @@ "source_file": "migrations/Version20260609131553.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553", - "target": "migrations_version20260609131553_version20260609131553_up", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_version20260609131553_up" }, { "relation": "references", @@ -94932,9 +94942,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553_up", - "target": "migrations_version20260609131553_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_php_schema" }, { "relation": "references", @@ -94943,9 +94953,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609131553_version20260609131553_down", - "target": "migrations_version20260609131553_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609131553_php_schema" }, { "relation": "imports", @@ -94954,9 +94964,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009", - "target": "migrations_version20260609132009_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_php_schema" }, { "relation": "contains", @@ -94964,9 +94974,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009", - "target": "migrations_version20260609132009_version20260609132009", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_version20260609132009" }, { "relation": "method", @@ -94974,9 +94984,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009", - "target": "migrations_version20260609132009_version20260609132009_down", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_version20260609132009_down" }, { "relation": "method", @@ -94984,9 +94994,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009", - "target": "migrations_version20260609132009_version20260609132009_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_version20260609132009_getdescription" }, { "relation": "method", @@ -94994,9 +95004,9 @@ "source_file": "migrations/Version20260609132009.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009", - "target": "migrations_version20260609132009_version20260609132009_up", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_version20260609132009_up" }, { "relation": "references", @@ -95005,9 +95015,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009_up", - "target": "migrations_version20260609132009_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_php_schema" }, { "relation": "references", @@ -95016,9 +95026,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609132009_version20260609132009_down", - "target": "migrations_version20260609132009_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132009_php_schema" }, { "relation": "imports", @@ -95027,9 +95037,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708", - "target": "migrations_version20260609132708_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_php_schema" }, { "relation": "contains", @@ -95037,9 +95047,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708", - "target": "migrations_version20260609132708_version20260609132708", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_version20260609132708" }, { "relation": "method", @@ -95047,9 +95057,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708", - "target": "migrations_version20260609132708_version20260609132708_down", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_version20260609132708_down" }, { "relation": "method", @@ -95057,9 +95067,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708", - "target": "migrations_version20260609132708_version20260609132708_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_version20260609132708_getdescription" }, { "relation": "method", @@ -95067,9 +95077,9 @@ "source_file": "migrations/Version20260609132708.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708", - "target": "migrations_version20260609132708_version20260609132708_up", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_version20260609132708_up" }, { "relation": "references", @@ -95078,9 +95088,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708_up", - "target": "migrations_version20260609132708_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_php_schema" }, { "relation": "references", @@ -95089,9 +95099,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609132708_version20260609132708_down", - "target": "migrations_version20260609132708_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609132708_php_schema" }, { "relation": "imports", @@ -95100,9 +95110,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121", - "target": "migrations_version20260609133121_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_php_schema" }, { "relation": "contains", @@ -95110,9 +95120,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121", - "target": "migrations_version20260609133121_version20260609133121", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_version20260609133121" }, { "relation": "method", @@ -95120,9 +95130,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121", - "target": "migrations_version20260609133121_version20260609133121_down", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_version20260609133121_down" }, { "relation": "method", @@ -95130,9 +95140,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121", - "target": "migrations_version20260609133121_version20260609133121_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_version20260609133121_getdescription" }, { "relation": "method", @@ -95140,9 +95150,9 @@ "source_file": "migrations/Version20260609133121.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121", - "target": "migrations_version20260609133121_version20260609133121_up", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_version20260609133121_up" }, { "relation": "references", @@ -95151,9 +95161,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121_up", - "target": "migrations_version20260609133121_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_php_schema" }, { "relation": "references", @@ -95162,9 +95172,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133121_version20260609133121_down", - "target": "migrations_version20260609133121_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133121_php_schema" }, { "relation": "imports", @@ -95173,9 +95183,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334", - "target": "migrations_version20260609133334_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_php_schema" }, { "relation": "contains", @@ -95183,9 +95193,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334", - "target": "migrations_version20260609133334_version20260609133334", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_version20260609133334" }, { "relation": "method", @@ -95193,9 +95203,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334", - "target": "migrations_version20260609133334_version20260609133334_down", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_version20260609133334_down" }, { "relation": "method", @@ -95203,9 +95213,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334", - "target": "migrations_version20260609133334_version20260609133334_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_version20260609133334_getdescription" }, { "relation": "method", @@ -95213,9 +95223,9 @@ "source_file": "migrations/Version20260609133334.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334", - "target": "migrations_version20260609133334_version20260609133334_up", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_version20260609133334_up" }, { "relation": "references", @@ -95224,9 +95234,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334_up", - "target": "migrations_version20260609133334_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_php_schema" }, { "relation": "references", @@ -95235,9 +95245,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133334_version20260609133334_down", - "target": "migrations_version20260609133334_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133334_php_schema" }, { "relation": "imports", @@ -95246,9 +95256,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546", - "target": "migrations_version20260609133546_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_php_schema" }, { "relation": "contains", @@ -95256,9 +95266,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546", - "target": "migrations_version20260609133546_version20260609133546", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_version20260609133546" }, { "relation": "method", @@ -95266,9 +95276,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546", - "target": "migrations_version20260609133546_version20260609133546_down", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_version20260609133546_down" }, { "relation": "method", @@ -95276,9 +95286,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546", - "target": "migrations_version20260609133546_version20260609133546_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_version20260609133546_getdescription" }, { "relation": "method", @@ -95286,9 +95296,9 @@ "source_file": "migrations/Version20260609133546.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546", - "target": "migrations_version20260609133546_version20260609133546_up", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_version20260609133546_up" }, { "relation": "references", @@ -95297,9 +95307,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546_up", - "target": "migrations_version20260609133546_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_php_schema" }, { "relation": "references", @@ -95308,9 +95318,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609133546_version20260609133546_down", - "target": "migrations_version20260609133546_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609133546_php_schema" }, { "relation": "imports", @@ -95319,9 +95329,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112", - "target": "migrations_version20260609134112_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_php_schema" }, { "relation": "contains", @@ -95329,9 +95339,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112", - "target": "migrations_version20260609134112_version20260609134112", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_version20260609134112" }, { "relation": "method", @@ -95339,9 +95349,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112", - "target": "migrations_version20260609134112_version20260609134112_down", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_version20260609134112_down" }, { "relation": "method", @@ -95349,9 +95359,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112", - "target": "migrations_version20260609134112_version20260609134112_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_version20260609134112_getdescription" }, { "relation": "method", @@ -95359,9 +95369,9 @@ "source_file": "migrations/Version20260609134112.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112", - "target": "migrations_version20260609134112_version20260609134112_up", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_version20260609134112_up" }, { "relation": "references", @@ -95370,9 +95380,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112_up", - "target": "migrations_version20260609134112_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_php_schema" }, { "relation": "references", @@ -95381,9 +95391,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609134112_version20260609134112_down", - "target": "migrations_version20260609134112_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134112_php_schema" }, { "relation": "imports", @@ -95392,9 +95402,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741", - "target": "migrations_version20260609134741_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_php_schema" }, { "relation": "contains", @@ -95402,9 +95412,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741", - "target": "migrations_version20260609134741_version20260609134741", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_version20260609134741" }, { "relation": "method", @@ -95412,9 +95422,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741", - "target": "migrations_version20260609134741_version20260609134741_down", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_version20260609134741_down" }, { "relation": "method", @@ -95422,9 +95432,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741", - "target": "migrations_version20260609134741_version20260609134741_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_version20260609134741_getdescription" }, { "relation": "method", @@ -95432,9 +95442,9 @@ "source_file": "migrations/Version20260609134741.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741", - "target": "migrations_version20260609134741_version20260609134741_up", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_version20260609134741_up" }, { "relation": "references", @@ -95443,9 +95453,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741_up", - "target": "migrations_version20260609134741_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_php_schema" }, { "relation": "references", @@ -95454,9 +95464,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609134741_version20260609134741_down", - "target": "migrations_version20260609134741_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609134741_php_schema" }, { "relation": "imports", @@ -95465,9 +95475,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126", - "target": "migrations_version20260609135126_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_php_schema" }, { "relation": "contains", @@ -95475,9 +95485,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126", - "target": "migrations_version20260609135126_version20260609135126", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_version20260609135126" }, { "relation": "method", @@ -95485,9 +95495,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126", - "target": "migrations_version20260609135126_version20260609135126_down", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_version20260609135126_down" }, { "relation": "method", @@ -95495,9 +95505,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126", - "target": "migrations_version20260609135126_version20260609135126_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_version20260609135126_getdescription" }, { "relation": "method", @@ -95505,9 +95515,9 @@ "source_file": "migrations/Version20260609135126.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126", - "target": "migrations_version20260609135126_version20260609135126_up", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_version20260609135126_up" }, { "relation": "references", @@ -95516,9 +95526,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126_up", - "target": "migrations_version20260609135126_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_php_schema" }, { "relation": "references", @@ -95527,9 +95537,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135126_version20260609135126_down", - "target": "migrations_version20260609135126_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135126_php_schema" }, { "relation": "imports", @@ -95538,9 +95548,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514", - "target": "migrations_version20260609135514_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_php_schema" }, { "relation": "contains", @@ -95548,9 +95558,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514", - "target": "migrations_version20260609135514_version20260609135514", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_version20260609135514" }, { "relation": "method", @@ -95558,9 +95568,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514", - "target": "migrations_version20260609135514_version20260609135514_down", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_version20260609135514_down" }, { "relation": "method", @@ -95568,9 +95578,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514", - "target": "migrations_version20260609135514_version20260609135514_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_version20260609135514_getdescription" }, { "relation": "method", @@ -95578,9 +95588,9 @@ "source_file": "migrations/Version20260609135514.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514", - "target": "migrations_version20260609135514_version20260609135514_up", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_version20260609135514_up" }, { "relation": "references", @@ -95589,9 +95599,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514_up", - "target": "migrations_version20260609135514_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_php_schema" }, { "relation": "references", @@ -95600,9 +95610,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135514_version20260609135514_down", - "target": "migrations_version20260609135514_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135514_php_schema" }, { "relation": "imports", @@ -95611,9 +95621,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704", - "target": "migrations_version20260609135704_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_php_schema" }, { "relation": "contains", @@ -95621,9 +95631,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704", - "target": "migrations_version20260609135704_version20260609135704", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_version20260609135704" }, { "relation": "method", @@ -95631,9 +95641,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704", - "target": "migrations_version20260609135704_version20260609135704_down", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_version20260609135704_down" }, { "relation": "method", @@ -95641,9 +95651,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704", - "target": "migrations_version20260609135704_version20260609135704_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_version20260609135704_getdescription" }, { "relation": "method", @@ -95651,9 +95661,9 @@ "source_file": "migrations/Version20260609135704.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704", - "target": "migrations_version20260609135704_version20260609135704_up", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_version20260609135704_up" }, { "relation": "references", @@ -95662,9 +95672,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704_up", - "target": "migrations_version20260609135704_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_php_schema" }, { "relation": "references", @@ -95673,9 +95683,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135704_version20260609135704_down", - "target": "migrations_version20260609135704_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135704_php_schema" }, { "relation": "imports", @@ -95684,9 +95694,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923", - "target": "migrations_version20260609135923_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_php_schema" }, { "relation": "contains", @@ -95694,9 +95704,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923", - "target": "migrations_version20260609135923_version20260609135923", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_version20260609135923" }, { "relation": "method", @@ -95704,9 +95714,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923", - "target": "migrations_version20260609135923_version20260609135923_down", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_version20260609135923_down" }, { "relation": "method", @@ -95714,9 +95724,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923", - "target": "migrations_version20260609135923_version20260609135923_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_version20260609135923_getdescription" }, { "relation": "method", @@ -95724,9 +95734,9 @@ "source_file": "migrations/Version20260609135923.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923", - "target": "migrations_version20260609135923_version20260609135923_up", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_version20260609135923_up" }, { "relation": "references", @@ -95735,9 +95745,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923_up", - "target": "migrations_version20260609135923_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_php_schema" }, { "relation": "references", @@ -95746,9 +95756,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609135923_version20260609135923_down", - "target": "migrations_version20260609135923_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609135923_php_schema" }, { "relation": "imports", @@ -95757,9 +95767,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223", - "target": "migrations_version20260609140223_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_php_schema" }, { "relation": "contains", @@ -95767,9 +95777,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223", - "target": "migrations_version20260609140223_version20260609140223", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_version20260609140223" }, { "relation": "method", @@ -95777,9 +95787,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223", - "target": "migrations_version20260609140223_version20260609140223_down", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_version20260609140223_down" }, { "relation": "method", @@ -95787,9 +95797,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223", - "target": "migrations_version20260609140223_version20260609140223_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_version20260609140223_getdescription" }, { "relation": "method", @@ -95797,9 +95807,9 @@ "source_file": "migrations/Version20260609140223.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223", - "target": "migrations_version20260609140223_version20260609140223_up", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_version20260609140223_up" }, { "relation": "references", @@ -95808,9 +95818,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223_up", - "target": "migrations_version20260609140223_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_php_schema" }, { "relation": "references", @@ -95819,9 +95829,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609140223_version20260609140223_down", - "target": "migrations_version20260609140223_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140223_php_schema" }, { "relation": "imports", @@ -95830,9 +95840,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423", - "target": "migrations_version20260609140423_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_php_schema" }, { "relation": "contains", @@ -95840,9 +95850,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423", - "target": "migrations_version20260609140423_version20260609140423", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_version20260609140423" }, { "relation": "method", @@ -95850,9 +95860,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423", - "target": "migrations_version20260609140423_version20260609140423_down", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_version20260609140423_down" }, { "relation": "method", @@ -95860,9 +95870,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423", - "target": "migrations_version20260609140423_version20260609140423_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_version20260609140423_getdescription" }, { "relation": "method", @@ -95870,9 +95880,9 @@ "source_file": "migrations/Version20260609140423.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423", - "target": "migrations_version20260609140423_version20260609140423_up", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_version20260609140423_up" }, { "relation": "references", @@ -95881,9 +95891,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423_up", - "target": "migrations_version20260609140423_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_php_schema" }, { "relation": "references", @@ -95892,9 +95902,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260609140423_version20260609140423_down", - "target": "migrations_version20260609140423_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260609140423_php_schema" }, { "relation": "imports", @@ -95903,9 +95913,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539", - "target": "migrations_version20260610062539_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_php_schema" }, { "relation": "contains", @@ -95913,9 +95923,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539", - "target": "migrations_version20260610062539_version20260610062539", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_version20260610062539" }, { "relation": "method", @@ -95923,9 +95933,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539", - "target": "migrations_version20260610062539_version20260610062539_down", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_version20260610062539_down" }, { "relation": "method", @@ -95933,9 +95943,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539", - "target": "migrations_version20260610062539_version20260610062539_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_version20260610062539_getdescription" }, { "relation": "method", @@ -95943,9 +95953,9 @@ "source_file": "migrations/Version20260610062539.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539", - "target": "migrations_version20260610062539_version20260610062539_up", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_version20260610062539_up" }, { "relation": "references", @@ -95954,9 +95964,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539_up", - "target": "migrations_version20260610062539_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_php_schema" }, { "relation": "references", @@ -95965,9 +95975,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610062539_version20260610062539_down", - "target": "migrations_version20260610062539_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610062539_php_schema" }, { "relation": "imports", @@ -95976,9 +95986,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558", - "target": "migrations_version20260610092558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_php_schema" }, { "relation": "contains", @@ -95986,9 +95996,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558", - "target": "migrations_version20260610092558_version20260610092558", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_version20260610092558" }, { "relation": "method", @@ -95996,9 +96006,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558", - "target": "migrations_version20260610092558_version20260610092558_down", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_version20260610092558_down" }, { "relation": "method", @@ -96006,9 +96016,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558", - "target": "migrations_version20260610092558_version20260610092558_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_version20260610092558_getdescription" }, { "relation": "method", @@ -96016,9 +96026,9 @@ "source_file": "migrations/Version20260610092558.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558", - "target": "migrations_version20260610092558_version20260610092558_up", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_version20260610092558_up" }, { "relation": "references", @@ -96027,9 +96037,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558_up", - "target": "migrations_version20260610092558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_php_schema" }, { "relation": "references", @@ -96038,9 +96048,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610092558_version20260610092558_down", - "target": "migrations_version20260610092558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610092558_php_schema" }, { "relation": "imports", @@ -96049,9 +96059,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401", - "target": "migrations_version20260610103401_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_php_schema" }, { "relation": "contains", @@ -96059,9 +96069,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401", - "target": "migrations_version20260610103401_version20260610103401", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_version20260610103401" }, { "relation": "method", @@ -96069,9 +96079,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401", - "target": "migrations_version20260610103401_version20260610103401_down", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_version20260610103401_down" }, { "relation": "method", @@ -96079,9 +96089,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401", - "target": "migrations_version20260610103401_version20260610103401_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_version20260610103401_getdescription" }, { "relation": "method", @@ -96089,9 +96099,9 @@ "source_file": "migrations/Version20260610103401.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401", - "target": "migrations_version20260610103401_version20260610103401_up", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_version20260610103401_up" }, { "relation": "references", @@ -96100,9 +96110,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401_up", - "target": "migrations_version20260610103401_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_php_schema" }, { "relation": "references", @@ -96111,9 +96121,9 @@ "source_location": "L173", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610103401_version20260610103401_down", - "target": "migrations_version20260610103401_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610103401_php_schema" }, { "relation": "imports", @@ -96122,9 +96132,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039", - "target": "migrations_version20260610110039_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_php_schema" }, { "relation": "contains", @@ -96132,9 +96142,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039", - "target": "migrations_version20260610110039_version20260610110039", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_version20260610110039" }, { "relation": "method", @@ -96142,9 +96152,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039", - "target": "migrations_version20260610110039_version20260610110039_down", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_version20260610110039_down" }, { "relation": "method", @@ -96152,9 +96162,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039", - "target": "migrations_version20260610110039_version20260610110039_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_version20260610110039_getdescription" }, { "relation": "method", @@ -96162,9 +96172,9 @@ "source_file": "migrations/Version20260610110039.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039", - "target": "migrations_version20260610110039_version20260610110039_up", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_version20260610110039_up" }, { "relation": "references", @@ -96173,9 +96183,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039_up", - "target": "migrations_version20260610110039_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_php_schema" }, { "relation": "references", @@ -96184,9 +96194,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610110039_version20260610110039_down", - "target": "migrations_version20260610110039_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110039_php_schema" }, { "relation": "imports", @@ -96195,9 +96205,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921", - "target": "migrations_version20260610110921_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_php_schema" }, { "relation": "contains", @@ -96205,9 +96215,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921", - "target": "migrations_version20260610110921_version20260610110921", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_version20260610110921" }, { "relation": "method", @@ -96215,9 +96225,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921", - "target": "migrations_version20260610110921_version20260610110921_down", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_version20260610110921_down" }, { "relation": "method", @@ -96225,9 +96235,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921", - "target": "migrations_version20260610110921_version20260610110921_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_version20260610110921_getdescription" }, { "relation": "method", @@ -96235,9 +96245,9 @@ "source_file": "migrations/Version20260610110921.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921", - "target": "migrations_version20260610110921_version20260610110921_up", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_version20260610110921_up" }, { "relation": "references", @@ -96246,9 +96256,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921_up", - "target": "migrations_version20260610110921_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_php_schema" }, { "relation": "references", @@ -96257,9 +96267,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610110921_version20260610110921_down", - "target": "migrations_version20260610110921_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610110921_php_schema" }, { "relation": "imports", @@ -96268,9 +96278,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254", - "target": "migrations_version20260610111254_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_php_schema" }, { "relation": "contains", @@ -96278,9 +96288,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254", - "target": "migrations_version20260610111254_version20260610111254", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_version20260610111254" }, { "relation": "method", @@ -96288,9 +96298,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254", - "target": "migrations_version20260610111254_version20260610111254_down", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_version20260610111254_down" }, { "relation": "method", @@ -96298,9 +96308,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254", - "target": "migrations_version20260610111254_version20260610111254_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_version20260610111254_getdescription" }, { "relation": "method", @@ -96308,9 +96318,9 @@ "source_file": "migrations/Version20260610111254.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254", - "target": "migrations_version20260610111254_version20260610111254_up", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_version20260610111254_up" }, { "relation": "references", @@ -96319,9 +96329,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254_up", - "target": "migrations_version20260610111254_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_php_schema" }, { "relation": "references", @@ -96330,9 +96340,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610111254_version20260610111254_down", - "target": "migrations_version20260610111254_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610111254_php_schema" }, { "relation": "imports", @@ -96341,9 +96351,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711", - "target": "migrations_version20260610113711_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_php_schema" }, { "relation": "contains", @@ -96351,9 +96361,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711", - "target": "migrations_version20260610113711_version20260610113711", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_version20260610113711" }, { "relation": "method", @@ -96361,9 +96371,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711", - "target": "migrations_version20260610113711_version20260610113711_down", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_version20260610113711_down" }, { "relation": "method", @@ -96371,9 +96381,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711", - "target": "migrations_version20260610113711_version20260610113711_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_version20260610113711_getdescription" }, { "relation": "method", @@ -96381,9 +96391,9 @@ "source_file": "migrations/Version20260610113711.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711", - "target": "migrations_version20260610113711_version20260610113711_up", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_version20260610113711_up" }, { "relation": "references", @@ -96392,9 +96402,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711_up", - "target": "migrations_version20260610113711_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_php_schema" }, { "relation": "references", @@ -96403,9 +96413,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610113711_version20260610113711_down", - "target": "migrations_version20260610113711_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610113711_php_schema" }, { "relation": "imports", @@ -96414,9 +96424,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853", - "target": "migrations_version20260610140853_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_php_schema" }, { "relation": "contains", @@ -96424,9 +96434,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853", - "target": "migrations_version20260610140853_version20260610140853", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_version20260610140853" }, { "relation": "method", @@ -96434,9 +96444,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853", - "target": "migrations_version20260610140853_version20260610140853_down", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_version20260610140853_down" }, { "relation": "method", @@ -96444,9 +96454,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853", - "target": "migrations_version20260610140853_version20260610140853_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_version20260610140853_getdescription" }, { "relation": "method", @@ -96454,9 +96464,9 @@ "source_file": "migrations/Version20260610140853.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853", - "target": "migrations_version20260610140853_version20260610140853_up", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_version20260610140853_up" }, { "relation": "references", @@ -96465,9 +96475,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853_up", - "target": "migrations_version20260610140853_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_php_schema" }, { "relation": "references", @@ -96476,9 +96486,9 @@ "source_location": "L45", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610140853_version20260610140853_down", - "target": "migrations_version20260610140853_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610140853_php_schema" }, { "relation": "imports", @@ -96487,9 +96497,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105", - "target": "migrations_version20260610175105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_php_schema" }, { "relation": "contains", @@ -96497,9 +96507,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105", - "target": "migrations_version20260610175105_version20260610175105", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_version20260610175105" }, { "relation": "method", @@ -96507,9 +96517,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105", - "target": "migrations_version20260610175105_version20260610175105_down", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_version20260610175105_down" }, { "relation": "method", @@ -96517,9 +96527,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105", - "target": "migrations_version20260610175105_version20260610175105_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_version20260610175105_getdescription" }, { "relation": "method", @@ -96527,9 +96537,9 @@ "source_file": "migrations/Version20260610175105.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105", - "target": "migrations_version20260610175105_version20260610175105_up", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_version20260610175105_up" }, { "relation": "references", @@ -96538,9 +96548,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105_up", - "target": "migrations_version20260610175105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_php_schema" }, { "relation": "references", @@ -96549,9 +96559,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610175105_version20260610175105_down", - "target": "migrations_version20260610175105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610175105_php_schema" }, { "relation": "imports", @@ -96560,9 +96570,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655", - "target": "migrations_version20260610183655_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_php_schema" }, { "relation": "contains", @@ -96570,9 +96580,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655", - "target": "migrations_version20260610183655_version20260610183655", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_version20260610183655" }, { "relation": "method", @@ -96580,9 +96590,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655", - "target": "migrations_version20260610183655_version20260610183655_down", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_version20260610183655_down" }, { "relation": "method", @@ -96590,9 +96600,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655", - "target": "migrations_version20260610183655_version20260610183655_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_version20260610183655_getdescription" }, { "relation": "method", @@ -96600,9 +96610,9 @@ "source_file": "migrations/Version20260610183655.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655", - "target": "migrations_version20260610183655_version20260610183655_up", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_version20260610183655_up" }, { "relation": "references", @@ -96611,9 +96621,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655_up", - "target": "migrations_version20260610183655_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_php_schema" }, { "relation": "references", @@ -96622,9 +96632,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260610183655_version20260610183655_down", - "target": "migrations_version20260610183655_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260610183655_php_schema" }, { "relation": "imports", @@ -96633,9 +96643,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829", - "target": "migrations_version20260611075829_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_php_schema" }, { "relation": "contains", @@ -96643,9 +96653,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829", - "target": "migrations_version20260611075829_version20260611075829", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_version20260611075829" }, { "relation": "method", @@ -96653,9 +96663,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829", - "target": "migrations_version20260611075829_version20260611075829_down", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_version20260611075829_down" }, { "relation": "method", @@ -96663,9 +96673,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829", - "target": "migrations_version20260611075829_version20260611075829_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_version20260611075829_getdescription" }, { "relation": "method", @@ -96673,9 +96683,9 @@ "source_file": "migrations/Version20260611075829.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829", - "target": "migrations_version20260611075829_version20260611075829_up", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_version20260611075829_up" }, { "relation": "references", @@ -96684,9 +96694,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829_up", - "target": "migrations_version20260611075829_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_php_schema" }, { "relation": "references", @@ -96695,9 +96705,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611075829_version20260611075829_down", - "target": "migrations_version20260611075829_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611075829_php_schema" }, { "relation": "imports", @@ -96706,9 +96716,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424", - "target": "migrations_version20260611083424_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_php_schema" }, { "relation": "contains", @@ -96716,9 +96726,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424", - "target": "migrations_version20260611083424_version20260611083424", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_version20260611083424" }, { "relation": "method", @@ -96726,9 +96736,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424", - "target": "migrations_version20260611083424_version20260611083424_down", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_version20260611083424_down" }, { "relation": "method", @@ -96736,9 +96746,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424", - "target": "migrations_version20260611083424_version20260611083424_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_version20260611083424_getdescription" }, { "relation": "method", @@ -96746,9 +96756,9 @@ "source_file": "migrations/Version20260611083424.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424", - "target": "migrations_version20260611083424_version20260611083424_up", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_version20260611083424_up" }, { "relation": "references", @@ -96757,9 +96767,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424_up", - "target": "migrations_version20260611083424_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_php_schema" }, { "relation": "references", @@ -96768,9 +96778,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611083424_version20260611083424_down", - "target": "migrations_version20260611083424_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611083424_php_schema" }, { "relation": "imports", @@ -96779,9 +96789,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046", - "target": "migrations_version20260611084046_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_php_schema" }, { "relation": "contains", @@ -96789,9 +96799,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046", - "target": "migrations_version20260611084046_version20260611084046", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_version20260611084046" }, { "relation": "method", @@ -96799,9 +96809,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046", - "target": "migrations_version20260611084046_version20260611084046_down", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_version20260611084046_down" }, { "relation": "method", @@ -96809,9 +96819,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046", - "target": "migrations_version20260611084046_version20260611084046_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_version20260611084046_getdescription" }, { "relation": "method", @@ -96819,9 +96829,9 @@ "source_file": "migrations/Version20260611084046.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046", - "target": "migrations_version20260611084046_version20260611084046_up", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_version20260611084046_up" }, { "relation": "references", @@ -96830,9 +96840,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046_up", - "target": "migrations_version20260611084046_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_php_schema" }, { "relation": "references", @@ -96841,9 +96851,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260611084046_version20260611084046_down", - "target": "migrations_version20260611084046_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260611084046_php_schema" }, { "relation": "imports", @@ -96852,9 +96862,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739", - "target": "migrations_version20260612081739_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_php_schema" }, { "relation": "contains", @@ -96862,9 +96872,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739", - "target": "migrations_version20260612081739_version20260612081739", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_version20260612081739" }, { "relation": "method", @@ -96872,9 +96882,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739", - "target": "migrations_version20260612081739_version20260612081739_down", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_version20260612081739_down" }, { "relation": "method", @@ -96882,9 +96892,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739", - "target": "migrations_version20260612081739_version20260612081739_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_version20260612081739_getdescription" }, { "relation": "method", @@ -96892,9 +96902,9 @@ "source_file": "migrations/Version20260612081739.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739", - "target": "migrations_version20260612081739_version20260612081739_up", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_version20260612081739_up" }, { "relation": "references", @@ -96903,9 +96913,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739_up", - "target": "migrations_version20260612081739_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_php_schema" }, { "relation": "references", @@ -96914,9 +96924,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260612081739_version20260612081739_down", - "target": "migrations_version20260612081739_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612081739_php_schema" }, { "relation": "imports", @@ -96925,9 +96935,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848", - "target": "migrations_version20260612132848_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_php_schema" }, { "relation": "contains", @@ -96935,9 +96945,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848", - "target": "migrations_version20260612132848_version20260612132848", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_version20260612132848" }, { "relation": "method", @@ -96945,9 +96955,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848", - "target": "migrations_version20260612132848_version20260612132848_down", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_version20260612132848_down" }, { "relation": "method", @@ -96955,9 +96965,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848", - "target": "migrations_version20260612132848_version20260612132848_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_version20260612132848_getdescription" }, { "relation": "method", @@ -96965,9 +96975,9 @@ "source_file": "migrations/Version20260612132848.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848", - "target": "migrations_version20260612132848_version20260612132848_up", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_version20260612132848_up" }, { "relation": "references", @@ -96976,9 +96986,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848_up", - "target": "migrations_version20260612132848_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_php_schema" }, { "relation": "references", @@ -96987,9 +96997,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260612132848_version20260612132848_down", - "target": "migrations_version20260612132848_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260612132848_php_schema" }, { "relation": "imports", @@ -96998,9 +97008,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134", - "target": "migrations_version20260614181134_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_php_schema" }, { "relation": "contains", @@ -97008,9 +97018,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134", - "target": "migrations_version20260614181134_version20260614181134", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_version20260614181134" }, { "relation": "method", @@ -97018,9 +97028,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134", - "target": "migrations_version20260614181134_version20260614181134_down", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_version20260614181134_down" }, { "relation": "method", @@ -97028,9 +97038,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134", - "target": "migrations_version20260614181134_version20260614181134_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_version20260614181134_getdescription" }, { "relation": "method", @@ -97038,9 +97048,9 @@ "source_file": "migrations/Version20260614181134.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134", - "target": "migrations_version20260614181134_version20260614181134_up", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_version20260614181134_up" }, { "relation": "references", @@ -97049,9 +97059,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134_up", - "target": "migrations_version20260614181134_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_php_schema" }, { "relation": "references", @@ -97060,9 +97070,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181134_version20260614181134_down", - "target": "migrations_version20260614181134_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181134_php_schema" }, { "relation": "imports", @@ -97071,9 +97081,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629", - "target": "migrations_version20260614181629_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_php_schema" }, { "relation": "contains", @@ -97081,9 +97091,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629", - "target": "migrations_version20260614181629_version20260614181629", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_version20260614181629" }, { "relation": "method", @@ -97091,9 +97101,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629", - "target": "migrations_version20260614181629_version20260614181629_down", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_version20260614181629_down" }, { "relation": "method", @@ -97101,9 +97111,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629", - "target": "migrations_version20260614181629_version20260614181629_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_version20260614181629_getdescription" }, { "relation": "method", @@ -97111,9 +97121,9 @@ "source_file": "migrations/Version20260614181629.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629", - "target": "migrations_version20260614181629_version20260614181629_up", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_version20260614181629_up" }, { "relation": "references", @@ -97122,9 +97132,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629_up", - "target": "migrations_version20260614181629_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_php_schema" }, { "relation": "references", @@ -97133,9 +97143,9 @@ "source_location": "L33", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181629_version20260614181629_down", - "target": "migrations_version20260614181629_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181629_php_schema" }, { "relation": "imports", @@ -97144,9 +97154,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657", - "target": "migrations_version20260614181657_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_php_schema" }, { "relation": "contains", @@ -97154,9 +97164,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657", - "target": "migrations_version20260614181657_version20260614181657", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_version20260614181657" }, { "relation": "method", @@ -97164,9 +97174,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657", - "target": "migrations_version20260614181657_version20260614181657_down", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_version20260614181657_down" }, { "relation": "method", @@ -97174,9 +97184,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657", - "target": "migrations_version20260614181657_version20260614181657_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_version20260614181657_getdescription" }, { "relation": "method", @@ -97184,9 +97194,9 @@ "source_file": "migrations/Version20260614181657.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657", - "target": "migrations_version20260614181657_version20260614181657_up", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_version20260614181657_up" }, { "relation": "calls", @@ -97206,9 +97216,9 @@ "source_location": "L18", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657_up", - "target": "migrations_version20260614181657_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_php_schema" }, { "relation": "references", @@ -97217,9 +97227,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614181657_version20260614181657_down", - "target": "migrations_version20260614181657_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614181657_php_schema" }, { "relation": "imports", @@ -97228,9 +97238,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549", - "target": "migrations_version20260614182549_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_php_schema" }, { "relation": "contains", @@ -97238,9 +97248,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549", - "target": "migrations_version20260614182549_version20260614182549", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_version20260614182549" }, { "relation": "method", @@ -97248,9 +97258,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549", - "target": "migrations_version20260614182549_version20260614182549_down", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_version20260614182549_down" }, { "relation": "method", @@ -97258,9 +97268,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549", - "target": "migrations_version20260614182549_version20260614182549_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_version20260614182549_getdescription" }, { "relation": "method", @@ -97268,9 +97278,9 @@ "source_file": "migrations/Version20260614182549.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549", - "target": "migrations_version20260614182549_version20260614182549_up", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_version20260614182549_up" }, { "relation": "references", @@ -97279,9 +97289,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549_up", - "target": "migrations_version20260614182549_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_php_schema" }, { "relation": "references", @@ -97290,9 +97300,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614182549_version20260614182549_down", - "target": "migrations_version20260614182549_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182549_php_schema" }, { "relation": "imports", @@ -97301,9 +97311,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950", - "target": "migrations_version20260614182950_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_php_schema" }, { "relation": "contains", @@ -97311,9 +97321,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950", - "target": "migrations_version20260614182950_version20260614182950", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_version20260614182950" }, { "relation": "method", @@ -97321,9 +97331,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950", - "target": "migrations_version20260614182950_version20260614182950_down", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_version20260614182950_down" }, { "relation": "method", @@ -97331,9 +97341,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950", - "target": "migrations_version20260614182950_version20260614182950_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_version20260614182950_getdescription" }, { "relation": "method", @@ -97341,9 +97351,9 @@ "source_file": "migrations/Version20260614182950.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950", - "target": "migrations_version20260614182950_version20260614182950_up", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_version20260614182950_up" }, { "relation": "references", @@ -97352,9 +97362,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950_up", - "target": "migrations_version20260614182950_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_php_schema" }, { "relation": "references", @@ -97363,9 +97373,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614182950_version20260614182950_down", - "target": "migrations_version20260614182950_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614182950_php_schema" }, { "relation": "imports", @@ -97374,9 +97384,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527", - "target": "migrations_version20260614183527_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_php_schema" }, { "relation": "contains", @@ -97384,9 +97394,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527", - "target": "migrations_version20260614183527_version20260614183527", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_version20260614183527" }, { "relation": "method", @@ -97394,9 +97404,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527", - "target": "migrations_version20260614183527_version20260614183527_down", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_version20260614183527_down" }, { "relation": "method", @@ -97404,9 +97414,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527", - "target": "migrations_version20260614183527_version20260614183527_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_version20260614183527_getdescription" }, { "relation": "method", @@ -97414,9 +97424,9 @@ "source_file": "migrations/Version20260614183527.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527", - "target": "migrations_version20260614183527_version20260614183527_up", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_version20260614183527_up" }, { "relation": "references", @@ -97425,9 +97435,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527_up", - "target": "migrations_version20260614183527_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_php_schema" }, { "relation": "references", @@ -97436,9 +97446,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260614183527_version20260614183527_down", - "target": "migrations_version20260614183527_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260614183527_php_schema" }, { "relation": "imports", @@ -97447,9 +97457,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415", - "target": "migrations_version20260615060415_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_php_schema" }, { "relation": "contains", @@ -97457,9 +97467,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415", - "target": "migrations_version20260615060415_version20260615060415", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_version20260615060415" }, { "relation": "method", @@ -97467,9 +97477,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415", - "target": "migrations_version20260615060415_version20260615060415_down", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_version20260615060415_down" }, { "relation": "method", @@ -97477,9 +97487,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415", - "target": "migrations_version20260615060415_version20260615060415_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_version20260615060415_getdescription" }, { "relation": "method", @@ -97487,9 +97497,9 @@ "source_file": "migrations/Version20260615060415.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415", - "target": "migrations_version20260615060415_version20260615060415_up", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_version20260615060415_up" }, { "relation": "references", @@ -97498,9 +97508,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415_up", - "target": "migrations_version20260615060415_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_php_schema" }, { "relation": "references", @@ -97509,9 +97519,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615060415_version20260615060415_down", - "target": "migrations_version20260615060415_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615060415_php_schema" }, { "relation": "imports", @@ -97520,9 +97530,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938", - "target": "migrations_version20260615061938_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_php_schema" }, { "relation": "contains", @@ -97530,9 +97540,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938", - "target": "migrations_version20260615061938_version20260615061938", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_version20260615061938" }, { "relation": "method", @@ -97540,9 +97550,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938", - "target": "migrations_version20260615061938_version20260615061938_down", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_version20260615061938_down" }, { "relation": "method", @@ -97550,9 +97560,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938", - "target": "migrations_version20260615061938_version20260615061938_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_version20260615061938_getdescription" }, { "relation": "method", @@ -97560,9 +97570,9 @@ "source_file": "migrations/Version20260615061938.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938", - "target": "migrations_version20260615061938_version20260615061938_up", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_version20260615061938_up" }, { "relation": "references", @@ -97571,9 +97581,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938_up", - "target": "migrations_version20260615061938_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_php_schema" }, { "relation": "references", @@ -97582,9 +97592,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615061938_version20260615061938_down", - "target": "migrations_version20260615061938_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615061938_php_schema" }, { "relation": "imports", @@ -97593,9 +97603,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107", - "target": "migrations_version20260615074107_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_php_schema" }, { "relation": "contains", @@ -97603,9 +97613,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107", - "target": "migrations_version20260615074107_version20260615074107", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_version20260615074107" }, { "relation": "method", @@ -97613,9 +97623,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107", - "target": "migrations_version20260615074107_version20260615074107_down", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_version20260615074107_down" }, { "relation": "method", @@ -97623,9 +97633,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107", - "target": "migrations_version20260615074107_version20260615074107_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_version20260615074107_getdescription" }, { "relation": "method", @@ -97633,9 +97643,9 @@ "source_file": "migrations/Version20260615074107.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107", - "target": "migrations_version20260615074107_version20260615074107_up", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_version20260615074107_up" }, { "relation": "references", @@ -97644,9 +97654,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107_up", - "target": "migrations_version20260615074107_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_php_schema" }, { "relation": "references", @@ -97655,9 +97665,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615074107_version20260615074107_down", - "target": "migrations_version20260615074107_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615074107_php_schema" }, { "relation": "imports", @@ -97666,9 +97676,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236", - "target": "migrations_version20260615142236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_php_schema" }, { "relation": "contains", @@ -97676,9 +97686,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236", - "target": "migrations_version20260615142236_version20260615142236", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_version20260615142236" }, { "relation": "method", @@ -97686,9 +97696,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236", - "target": "migrations_version20260615142236_version20260615142236_down", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_version20260615142236_down" }, { "relation": "method", @@ -97696,9 +97706,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236", - "target": "migrations_version20260615142236_version20260615142236_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_version20260615142236_getdescription" }, { "relation": "method", @@ -97706,9 +97716,9 @@ "source_file": "migrations/Version20260615142236.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236", - "target": "migrations_version20260615142236_version20260615142236_up", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_version20260615142236_up" }, { "relation": "references", @@ -97717,9 +97727,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236_up", - "target": "migrations_version20260615142236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_php_schema" }, { "relation": "references", @@ -97728,9 +97738,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615142236_version20260615142236_down", - "target": "migrations_version20260615142236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615142236_php_schema" }, { "relation": "imports", @@ -97739,9 +97749,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529", - "target": "migrations_version20260615203529_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_php_schema" }, { "relation": "contains", @@ -97749,9 +97759,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529", - "target": "migrations_version20260615203529_version20260615203529", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_version20260615203529" }, { "relation": "method", @@ -97759,9 +97769,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529", - "target": "migrations_version20260615203529_version20260615203529_down", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_version20260615203529_down" }, { "relation": "method", @@ -97769,9 +97779,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529", - "target": "migrations_version20260615203529_version20260615203529_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_version20260615203529_getdescription" }, { "relation": "method", @@ -97779,9 +97789,9 @@ "source_file": "migrations/Version20260615203529.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529", - "target": "migrations_version20260615203529_version20260615203529_up", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_version20260615203529_up" }, { "relation": "references", @@ -97790,9 +97800,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529_up", - "target": "migrations_version20260615203529_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_php_schema" }, { "relation": "references", @@ -97801,9 +97811,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260615203529_version20260615203529_down", - "target": "migrations_version20260615203529_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260615203529_php_schema" }, { "relation": "imports", @@ -97812,9 +97822,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912", - "target": "migrations_version20260619062912_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_php_schema" }, { "relation": "contains", @@ -97822,9 +97832,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912", - "target": "migrations_version20260619062912_version20260619062912", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_version20260619062912" }, { "relation": "method", @@ -97832,9 +97842,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912", - "target": "migrations_version20260619062912_version20260619062912_down", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_version20260619062912_down" }, { "relation": "method", @@ -97842,9 +97852,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912", - "target": "migrations_version20260619062912_version20260619062912_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_version20260619062912_getdescription" }, { "relation": "method", @@ -97852,9 +97862,9 @@ "source_file": "migrations/Version20260619062912.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912", - "target": "migrations_version20260619062912_version20260619062912_up", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_version20260619062912_up" }, { "relation": "references", @@ -97863,9 +97873,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912_up", - "target": "migrations_version20260619062912_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_php_schema" }, { "relation": "references", @@ -97874,9 +97884,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619062912_version20260619062912_down", - "target": "migrations_version20260619062912_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619062912_php_schema" }, { "relation": "imports", @@ -97885,9 +97895,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047", - "target": "migrations_version20260619121047_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_php_schema" }, { "relation": "contains", @@ -97895,9 +97905,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047", - "target": "migrations_version20260619121047_version20260619121047", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_version20260619121047" }, { "relation": "method", @@ -97905,9 +97915,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047", - "target": "migrations_version20260619121047_version20260619121047_down", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_version20260619121047_down" }, { "relation": "method", @@ -97915,9 +97925,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047", - "target": "migrations_version20260619121047_version20260619121047_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_version20260619121047_getdescription" }, { "relation": "method", @@ -97925,9 +97935,9 @@ "source_file": "migrations/Version20260619121047.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047", - "target": "migrations_version20260619121047_version20260619121047_up", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_version20260619121047_up" }, { "relation": "references", @@ -97936,9 +97946,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047_up", - "target": "migrations_version20260619121047_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_php_schema" }, { "relation": "references", @@ -97947,9 +97957,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619121047_version20260619121047_down", - "target": "migrations_version20260619121047_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619121047_php_schema" }, { "relation": "imports", @@ -97958,9 +97968,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105", - "target": "migrations_version20260619170105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_php_schema" }, { "relation": "contains", @@ -97968,9 +97978,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105", - "target": "migrations_version20260619170105_version20260619170105", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_version20260619170105" }, { "relation": "method", @@ -97978,9 +97988,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105", - "target": "migrations_version20260619170105_version20260619170105_down", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_version20260619170105_down" }, { "relation": "method", @@ -97988,9 +97998,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105", - "target": "migrations_version20260619170105_version20260619170105_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_version20260619170105_getdescription" }, { "relation": "method", @@ -97998,9 +98008,9 @@ "source_file": "migrations/Version20260619170105.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105", - "target": "migrations_version20260619170105_version20260619170105_up", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_version20260619170105_up" }, { "relation": "references", @@ -98009,9 +98019,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105_up", - "target": "migrations_version20260619170105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_php_schema" }, { "relation": "references", @@ -98020,9 +98030,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260619170105_version20260619170105_down", - "target": "migrations_version20260619170105_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260619170105_php_schema" }, { "relation": "imports", @@ -98031,9 +98041,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558", - "target": "migrations_version20260621084558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_php_schema" }, { "relation": "contains", @@ -98041,9 +98051,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558", - "target": "migrations_version20260621084558_version20260621084558", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_version20260621084558" }, { "relation": "method", @@ -98051,9 +98061,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558", - "target": "migrations_version20260621084558_version20260621084558_down", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_version20260621084558_down" }, { "relation": "method", @@ -98061,9 +98071,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558", - "target": "migrations_version20260621084558_version20260621084558_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_version20260621084558_getdescription" }, { "relation": "method", @@ -98071,9 +98081,9 @@ "source_file": "migrations/Version20260621084558.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558", - "target": "migrations_version20260621084558_version20260621084558_up", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_version20260621084558_up" }, { "relation": "references", @@ -98082,9 +98092,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558_up", - "target": "migrations_version20260621084558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_php_schema" }, { "relation": "references", @@ -98093,9 +98103,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260621084558_version20260621084558_down", - "target": "migrations_version20260621084558_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621084558_php_schema" }, { "relation": "imports", @@ -98104,9 +98114,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624", - "target": "migrations_version20260621094624_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_php_schema" }, { "relation": "contains", @@ -98114,9 +98124,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624", - "target": "migrations_version20260621094624_version20260621094624", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_version20260621094624" }, { "relation": "method", @@ -98124,9 +98134,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624", - "target": "migrations_version20260621094624_version20260621094624_down", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_version20260621094624_down" }, { "relation": "method", @@ -98134,9 +98144,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624", - "target": "migrations_version20260621094624_version20260621094624_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_version20260621094624_getdescription" }, { "relation": "method", @@ -98144,9 +98154,9 @@ "source_file": "migrations/Version20260621094624.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624", - "target": "migrations_version20260621094624_version20260621094624_up", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_version20260621094624_up" }, { "relation": "references", @@ -98155,9 +98165,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624_up", - "target": "migrations_version20260621094624_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_php_schema" }, { "relation": "references", @@ -98166,9 +98176,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260621094624_version20260621094624_down", - "target": "migrations_version20260621094624_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260621094624_php_schema" }, { "relation": "imports", @@ -98177,9 +98187,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119", - "target": "migrations_version20260622160119_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_php_schema" }, { "relation": "contains", @@ -98187,9 +98197,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119", - "target": "migrations_version20260622160119_version20260622160119", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_version20260622160119" }, { "relation": "method", @@ -98197,9 +98207,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119", - "target": "migrations_version20260622160119_version20260622160119_down", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_version20260622160119_down" }, { "relation": "method", @@ -98207,9 +98217,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119", - "target": "migrations_version20260622160119_version20260622160119_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_version20260622160119_getdescription" }, { "relation": "method", @@ -98217,9 +98227,9 @@ "source_file": "migrations/Version20260622160119.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119", - "target": "migrations_version20260622160119_version20260622160119_up", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_version20260622160119_up" }, { "relation": "references", @@ -98228,9 +98238,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119_up", - "target": "migrations_version20260622160119_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_php_schema" }, { "relation": "references", @@ -98239,9 +98249,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622160119_version20260622160119_down", - "target": "migrations_version20260622160119_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622160119_php_schema" }, { "relation": "imports", @@ -98250,9 +98260,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152", - "target": "migrations_version20260622163152_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_php_schema" }, { "relation": "contains", @@ -98260,9 +98270,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152", - "target": "migrations_version20260622163152_version20260622163152", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_version20260622163152" }, { "relation": "method", @@ -98270,9 +98280,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152", - "target": "migrations_version20260622163152_version20260622163152_down", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_version20260622163152_down" }, { "relation": "method", @@ -98280,9 +98290,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152", - "target": "migrations_version20260622163152_version20260622163152_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_version20260622163152_getdescription" }, { "relation": "method", @@ -98290,9 +98300,9 @@ "source_file": "migrations/Version20260622163152.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152", - "target": "migrations_version20260622163152_version20260622163152_up", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_version20260622163152_up" }, { "relation": "references", @@ -98301,9 +98311,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152_up", - "target": "migrations_version20260622163152_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_php_schema" }, { "relation": "references", @@ -98312,9 +98322,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622163152_version20260622163152_down", - "target": "migrations_version20260622163152_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622163152_php_schema" }, { "relation": "imports", @@ -98323,9 +98333,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538", - "target": "migrations_version20260622171538_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_php_schema" }, { "relation": "contains", @@ -98333,9 +98343,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538", - "target": "migrations_version20260622171538_version20260622171538", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_version20260622171538" }, { "relation": "method", @@ -98343,9 +98353,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538", - "target": "migrations_version20260622171538_version20260622171538_down", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_version20260622171538_down" }, { "relation": "method", @@ -98353,9 +98363,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538", - "target": "migrations_version20260622171538_version20260622171538_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_version20260622171538_getdescription" }, { "relation": "method", @@ -98363,9 +98373,9 @@ "source_file": "migrations/Version20260622171538.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538", - "target": "migrations_version20260622171538_version20260622171538_up", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_version20260622171538_up" }, { "relation": "references", @@ -98374,9 +98384,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538_up", - "target": "migrations_version20260622171538_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_php_schema" }, { "relation": "references", @@ -98385,9 +98395,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622171538_version20260622171538_down", - "target": "migrations_version20260622171538_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622171538_php_schema" }, { "relation": "imports", @@ -98396,9 +98406,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707", - "target": "migrations_version20260622173707_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_php_schema" }, { "relation": "contains", @@ -98406,9 +98416,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707", - "target": "migrations_version20260622173707_version20260622173707", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_version20260622173707" }, { "relation": "method", @@ -98416,9 +98426,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707", - "target": "migrations_version20260622173707_version20260622173707_down", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_version20260622173707_down" }, { "relation": "method", @@ -98426,9 +98436,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707", - "target": "migrations_version20260622173707_version20260622173707_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_version20260622173707_getdescription" }, { "relation": "method", @@ -98436,9 +98446,9 @@ "source_file": "migrations/Version20260622173707.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707", - "target": "migrations_version20260622173707_version20260622173707_up", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_version20260622173707_up" }, { "relation": "references", @@ -98447,9 +98457,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707_up", - "target": "migrations_version20260622173707_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_php_schema" }, { "relation": "references", @@ -98458,9 +98468,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622173707_version20260622173707_down", - "target": "migrations_version20260622173707_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622173707_php_schema" }, { "relation": "imports", @@ -98469,9 +98479,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251", - "target": "migrations_version20260622181251_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_php_schema" }, { "relation": "contains", @@ -98479,9 +98489,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251", - "target": "migrations_version20260622181251_version20260622181251", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_version20260622181251" }, { "relation": "method", @@ -98489,9 +98499,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251", - "target": "migrations_version20260622181251_version20260622181251_down", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_version20260622181251_down" }, { "relation": "method", @@ -98499,9 +98509,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251", - "target": "migrations_version20260622181251_version20260622181251_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_version20260622181251_getdescription" }, { "relation": "method", @@ -98509,9 +98519,9 @@ "source_file": "migrations/Version20260622181251.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251", - "target": "migrations_version20260622181251_version20260622181251_up", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_version20260622181251_up" }, { "relation": "references", @@ -98520,9 +98530,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251_up", - "target": "migrations_version20260622181251_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_php_schema" }, { "relation": "references", @@ -98531,9 +98541,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622181251_version20260622181251_down", - "target": "migrations_version20260622181251_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622181251_php_schema" }, { "relation": "imports", @@ -98542,9 +98552,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409", - "target": "migrations_version20260622184409_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_php_schema" }, { "relation": "contains", @@ -98552,9 +98562,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409", - "target": "migrations_version20260622184409_version20260622184409", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_version20260622184409" }, { "relation": "method", @@ -98562,9 +98572,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409", - "target": "migrations_version20260622184409_version20260622184409_down", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_version20260622184409_down" }, { "relation": "method", @@ -98572,9 +98582,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409", - "target": "migrations_version20260622184409_version20260622184409_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_version20260622184409_getdescription" }, { "relation": "method", @@ -98582,9 +98592,9 @@ "source_file": "migrations/Version20260622184409.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409", - "target": "migrations_version20260622184409_version20260622184409_up", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_version20260622184409_up" }, { "relation": "references", @@ -98593,9 +98603,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409_up", - "target": "migrations_version20260622184409_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_php_schema" }, { "relation": "references", @@ -98604,9 +98614,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622184409_version20260622184409_down", - "target": "migrations_version20260622184409_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622184409_php_schema" }, { "relation": "imports", @@ -98615,9 +98625,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948", - "target": "migrations_version20260622185948_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_php_schema" }, { "relation": "contains", @@ -98625,9 +98635,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948", - "target": "migrations_version20260622185948_version20260622185948", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_version20260622185948" }, { "relation": "method", @@ -98635,9 +98645,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948", - "target": "migrations_version20260622185948_version20260622185948_down", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_version20260622185948_down" }, { "relation": "method", @@ -98645,9 +98655,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948", - "target": "migrations_version20260622185948_version20260622185948_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_version20260622185948_getdescription" }, { "relation": "method", @@ -98655,9 +98665,9 @@ "source_file": "migrations/Version20260622185948.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948", - "target": "migrations_version20260622185948_version20260622185948_up", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_version20260622185948_up" }, { "relation": "references", @@ -98666,9 +98676,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948_up", - "target": "migrations_version20260622185948_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_php_schema" }, { "relation": "references", @@ -98677,9 +98687,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260622185948_version20260622185948_down", - "target": "migrations_version20260622185948_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260622185948_php_schema" }, { "relation": "imports", @@ -98688,9 +98698,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721", - "target": "migrations_version20260623115721_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_php_schema" }, { "relation": "contains", @@ -98698,9 +98708,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721", - "target": "migrations_version20260623115721_version20260623115721", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_version20260623115721" }, { "relation": "method", @@ -98708,9 +98718,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721", - "target": "migrations_version20260623115721_version20260623115721_down", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_version20260623115721_down" }, { "relation": "method", @@ -98718,9 +98728,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721", - "target": "migrations_version20260623115721_version20260623115721_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_version20260623115721_getdescription" }, { "relation": "method", @@ -98728,9 +98738,9 @@ "source_file": "migrations/Version20260623115721.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721", - "target": "migrations_version20260623115721_version20260623115721_up", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_version20260623115721_up" }, { "relation": "references", @@ -98739,9 +98749,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721_up", - "target": "migrations_version20260623115721_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_php_schema" }, { "relation": "references", @@ -98750,9 +98760,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260623115721_version20260623115721_down", - "target": "migrations_version20260623115721_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623115721_php_schema" }, { "relation": "imports", @@ -98761,9 +98771,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907", - "target": "migrations_version20260623173907_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_php_schema" }, { "relation": "contains", @@ -98771,9 +98781,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907", - "target": "migrations_version20260623173907_version20260623173907", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_version20260623173907" }, { "relation": "method", @@ -98781,9 +98791,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907", - "target": "migrations_version20260623173907_version20260623173907_down", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_version20260623173907_down" }, { "relation": "method", @@ -98791,9 +98801,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907", - "target": "migrations_version20260623173907_version20260623173907_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_version20260623173907_getdescription" }, { "relation": "method", @@ -98801,9 +98811,9 @@ "source_file": "migrations/Version20260623173907.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907", - "target": "migrations_version20260623173907_version20260623173907_up", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_version20260623173907_up" }, { "relation": "references", @@ -98812,9 +98822,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907_up", - "target": "migrations_version20260623173907_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_php_schema" }, { "relation": "references", @@ -98823,9 +98833,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260623173907_version20260623173907_down", - "target": "migrations_version20260623173907_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260623173907_php_schema" }, { "relation": "imports", @@ -98834,9 +98844,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339", - "target": "migrations_version20260624030339_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_php_schema" }, { "relation": "contains", @@ -98844,9 +98854,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339", - "target": "migrations_version20260624030339_version20260624030339", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_version20260624030339" }, { "relation": "method", @@ -98854,9 +98864,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339", - "target": "migrations_version20260624030339_version20260624030339_down", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_version20260624030339_down" }, { "relation": "method", @@ -98864,9 +98874,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339", - "target": "migrations_version20260624030339_version20260624030339_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_version20260624030339_getdescription" }, { "relation": "method", @@ -98874,9 +98884,9 @@ "source_file": "migrations/Version20260624030339.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339", - "target": "migrations_version20260624030339_version20260624030339_up", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_version20260624030339_up" }, { "relation": "references", @@ -98885,9 +98895,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339_up", - "target": "migrations_version20260624030339_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_php_schema" }, { "relation": "references", @@ -98896,9 +98906,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624030339_version20260624030339_down", - "target": "migrations_version20260624030339_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624030339_php_schema" }, { "relation": "imports", @@ -98907,9 +98917,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459", - "target": "migrations_version20260624092459_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_php_schema" }, { "relation": "contains", @@ -98917,9 +98927,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459", - "target": "migrations_version20260624092459_version20260624092459", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_version20260624092459" }, { "relation": "method", @@ -98927,9 +98937,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459", - "target": "migrations_version20260624092459_version20260624092459_down", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_version20260624092459_down" }, { "relation": "method", @@ -98937,9 +98947,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459", - "target": "migrations_version20260624092459_version20260624092459_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_version20260624092459_getdescription" }, { "relation": "method", @@ -98947,9 +98957,9 @@ "source_file": "migrations/Version20260624092459.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459", - "target": "migrations_version20260624092459_version20260624092459_up", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_version20260624092459_up" }, { "relation": "references", @@ -98958,9 +98968,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459_up", - "target": "migrations_version20260624092459_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_php_schema" }, { "relation": "references", @@ -98969,9 +98979,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624092459_version20260624092459_down", - "target": "migrations_version20260624092459_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624092459_php_schema" }, { "relation": "imports", @@ -98980,9 +98990,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738", - "target": "migrations_version20260624093738_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_php_schema" }, { "relation": "contains", @@ -98990,9 +99000,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738", - "target": "migrations_version20260624093738_version20260624093738", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_version20260624093738" }, { "relation": "method", @@ -99000,9 +99010,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738", - "target": "migrations_version20260624093738_version20260624093738_down", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_version20260624093738_down" }, { "relation": "method", @@ -99010,9 +99020,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738", - "target": "migrations_version20260624093738_version20260624093738_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_version20260624093738_getdescription" }, { "relation": "method", @@ -99020,9 +99030,9 @@ "source_file": "migrations/Version20260624093738.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738", - "target": "migrations_version20260624093738_version20260624093738_up", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_version20260624093738_up" }, { "relation": "references", @@ -99031,9 +99041,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738_up", - "target": "migrations_version20260624093738_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_php_schema" }, { "relation": "references", @@ -99042,9 +99052,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624093738_version20260624093738_down", - "target": "migrations_version20260624093738_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624093738_php_schema" }, { "relation": "imports", @@ -99053,9 +99063,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236", - "target": "migrations_version20260624123236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_php_schema" }, { "relation": "contains", @@ -99063,9 +99073,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236", - "target": "migrations_version20260624123236_version20260624123236", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_version20260624123236" }, { "relation": "method", @@ -99073,9 +99083,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236", - "target": "migrations_version20260624123236_version20260624123236_down", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_version20260624123236_down" }, { "relation": "method", @@ -99083,9 +99093,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236", - "target": "migrations_version20260624123236_version20260624123236_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_version20260624123236_getdescription" }, { "relation": "method", @@ -99093,9 +99103,9 @@ "source_file": "migrations/Version20260624123236.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236", - "target": "migrations_version20260624123236_version20260624123236_up", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_version20260624123236_up" }, { "relation": "references", @@ -99104,9 +99114,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236_up", - "target": "migrations_version20260624123236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_php_schema" }, { "relation": "references", @@ -99115,9 +99125,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260624123236_version20260624123236_down", - "target": "migrations_version20260624123236_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260624123236_php_schema" }, { "relation": "imports", @@ -99126,9 +99136,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132", - "target": "migrations_version20260625135132_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_php_schema" }, { "relation": "contains", @@ -99136,9 +99146,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132", - "target": "migrations_version20260625135132_version20260625135132", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_version20260625135132" }, { "relation": "method", @@ -99146,9 +99156,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132", - "target": "migrations_version20260625135132_version20260625135132_down", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_version20260625135132_down" }, { "relation": "method", @@ -99156,9 +99166,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132", - "target": "migrations_version20260625135132_version20260625135132_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_version20260625135132_getdescription" }, { "relation": "method", @@ -99166,9 +99176,9 @@ "source_file": "migrations/Version20260625135132.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132", - "target": "migrations_version20260625135132_version20260625135132_up", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_version20260625135132_up" }, { "relation": "references", @@ -99177,9 +99187,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132_up", - "target": "migrations_version20260625135132_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_php_schema" }, { "relation": "references", @@ -99188,9 +99198,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260625135132_version20260625135132_down", - "target": "migrations_version20260625135132_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625135132_php_schema" }, { "relation": "imports", @@ -99199,9 +99209,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304", - "target": "migrations_version20260625150304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_php_schema" }, { "relation": "contains", @@ -99209,9 +99219,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304", - "target": "migrations_version20260625150304_version20260625150304", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_version20260625150304" }, { "relation": "method", @@ -99219,9 +99229,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304", - "target": "migrations_version20260625150304_version20260625150304_down", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_version20260625150304_down" }, { "relation": "method", @@ -99229,9 +99239,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304", - "target": "migrations_version20260625150304_version20260625150304_getdescription", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_version20260625150304_getdescription" }, { "relation": "method", @@ -99239,9 +99249,9 @@ "source_file": "migrations/Version20260625150304.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304", - "target": "migrations_version20260625150304_version20260625150304_up", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_version20260625150304_up" }, { "relation": "calls", @@ -99261,9 +99271,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304_up", - "target": "migrations_version20260625150304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_php_schema" }, { "relation": "references", @@ -99272,9 +99282,9 @@ "source_location": "L49", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "migrations_version20260625150304_version20260625150304_down", - "target": "migrations_version20260625150304_php_schema", - "confidence_score": 1.0 + "target": "migrations_version20260625150304_php_schema" }, { "relation": "contains", @@ -99282,9 +99292,9 @@ "source_file": "package.json", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_dependencies", - "confidence_score": 1.0 + "target": "package_dependencies" }, { "relation": "contains", @@ -99292,9 +99302,9 @@ "source_file": "package.json", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_devdependencies", - "confidence_score": 1.0 + "target": "package_devdependencies" }, { "relation": "contains", @@ -99302,9 +99312,9 @@ "source_file": "package.json", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_license", - "confidence_score": 1.0 + "target": "package_license" }, { "relation": "contains", @@ -99312,9 +99322,9 @@ "source_file": "package.json", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_optionaldependencies", - "confidence_score": 1.0 + "target": "package_optionaldependencies" }, { "relation": "contains", @@ -99322,9 +99332,9 @@ "source_file": "package.json", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_private", - "confidence_score": 1.0 + "target": "package_private" }, { "relation": "contains", @@ -99332,9 +99342,9 @@ "source_file": "package.json", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "package", - "target": "package_scripts", - "confidence_score": 1.0 + "target": "package_scripts" }, { "relation": "contains", @@ -99342,9 +99352,9 @@ "source_file": "package.json", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_babel_core", - "confidence_score": 1.0 + "target": "package_devdependencies_babel_core" }, { "relation": "contains", @@ -99352,9 +99362,9 @@ "source_file": "package.json", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_babel_preset_env", - "confidence_score": 1.0 + "target": "package_devdependencies_babel_preset_env" }, { "relation": "contains", @@ -99362,9 +99372,9 @@ "source_file": "package.json", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_babel_preset_react", - "confidence_score": 1.0 + "target": "package_devdependencies_babel_preset_react" }, { "relation": "contains", @@ -99372,9 +99382,9 @@ "source_file": "package.json", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_babel_preset_typescript", - "confidence_score": 1.0 + "target": "package_devdependencies_babel_preset_typescript" }, { "relation": "contains", @@ -99382,9 +99392,9 @@ "source_file": "package.json", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_core_js", - "confidence_score": 1.0 + "target": "package_devdependencies_core_js" }, { "relation": "contains", @@ -99392,9 +99402,9 @@ "source_file": "package.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_hotwired_stimulus", - "confidence_score": 1.0 + "target": "package_devdependencies_hotwired_stimulus" }, { "relation": "contains", @@ -99402,9 +99412,9 @@ "source_file": "package.json", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_postcss", - "confidence_score": 1.0 + "target": "package_devdependencies_postcss" }, { "relation": "contains", @@ -99412,9 +99422,9 @@ "source_file": "package.json", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_postcss_loader", - "confidence_score": 1.0 + "target": "package_devdependencies_postcss_loader" }, { "relation": "contains", @@ -99422,9 +99432,9 @@ "source_file": "package.json", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_regenerator_runtime", - "confidence_score": 1.0 + "target": "package_devdependencies_regenerator_runtime" }, { "relation": "contains", @@ -99432,9 +99442,9 @@ "source_file": "package.json", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_symfony_stimulus_bridge", - "confidence_score": 1.0 + "target": "package_devdependencies_symfony_stimulus_bridge" }, { "relation": "contains", @@ -99442,9 +99452,9 @@ "source_file": "package.json", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_symfony_ux_react", - "confidence_score": 1.0 + "target": "package_devdependencies_symfony_ux_react" }, { "relation": "contains", @@ -99452,9 +99462,9 @@ "source_file": "package.json", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_symfony_webpack_encore", - "confidence_score": 1.0 + "target": "package_devdependencies_symfony_webpack_encore" }, { "relation": "contains", @@ -99462,9 +99472,9 @@ "source_file": "package.json", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_tailwindcss", - "confidence_score": 1.0 + "target": "package_devdependencies_tailwindcss" }, { "relation": "contains", @@ -99472,9 +99482,9 @@ "source_file": "package.json", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_tailwindcss_postcss", - "confidence_score": 1.0 + "target": "package_devdependencies_tailwindcss_postcss" }, { "relation": "contains", @@ -99482,9 +99492,9 @@ "source_file": "package.json", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_ts_loader", - "confidence_score": 1.0 + "target": "package_devdependencies_ts_loader" }, { "relation": "contains", @@ -99492,9 +99502,9 @@ "source_file": "package.json", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_types_react", - "confidence_score": 1.0 + "target": "package_devdependencies_types_react" }, { "relation": "contains", @@ -99502,9 +99512,9 @@ "source_file": "package.json", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_types_react_dom", - "confidence_score": 1.0 + "target": "package_devdependencies_types_react_dom" }, { "relation": "contains", @@ -99512,9 +99522,9 @@ "source_file": "package.json", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_typescript", - "confidence_score": 1.0 + "target": "package_devdependencies_typescript" }, { "relation": "contains", @@ -99522,9 +99532,9 @@ "source_file": "package.json", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_webpack", - "confidence_score": 1.0 + "target": "package_devdependencies_webpack" }, { "relation": "contains", @@ -99532,9 +99542,9 @@ "source_file": "package.json", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_webpack_cli", - "confidence_score": 1.0 + "target": "package_devdependencies_webpack_cli" }, { "relation": "contains", @@ -99542,9 +99552,9 @@ "source_file": "package.json", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_ckeditor_ckeditor5_build_classic", - "confidence_score": 1.0 + "target": "package_dependencies_ckeditor_ckeditor5_build_classic" }, { "relation": "contains", @@ -99552,9 +99562,9 @@ "source_file": "package.json", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_ckeditor_ckeditor5_react", - "confidence_score": 1.0 + "target": "package_dependencies_ckeditor_ckeditor5_react" }, { "relation": "contains", @@ -99562,9 +99572,9 @@ "source_file": "package.json", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_fontsource_vazirmatn", - "confidence_score": 1.0 + "target": "package_dependencies_fontsource_vazirmatn" }, { "relation": "contains", @@ -99572,9 +99582,9 @@ "source_file": "package.json", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_heroicons_react", - "confidence_score": 1.0 + "target": "package_dependencies_heroicons_react" }, { "relation": "contains", @@ -99582,9 +99592,9 @@ "source_file": "package.json", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_hookform_resolvers", - "confidence_score": 1.0 + "target": "package_dependencies_hookform_resolvers" }, { "relation": "contains", @@ -99592,9 +99602,9 @@ "source_file": "package.json", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_jalaali_js", - "confidence_score": 1.0 + "target": "package_dependencies_jalaali_js" }, { "relation": "contains", @@ -99602,9 +99612,9 @@ "source_file": "package.json", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_leaflet", - "confidence_score": 1.0 + "target": "package_dependencies_leaflet" }, { "relation": "contains", @@ -99612,9 +99622,9 @@ "source_file": "package.json", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react", - "confidence_score": 1.0 + "target": "package_dependencies_react" }, { "relation": "contains", @@ -99622,9 +99632,9 @@ "source_file": "package.json", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_dom", - "confidence_score": 1.0 + "target": "package_dependencies_react_dom" }, { "relation": "contains", @@ -99632,9 +99642,9 @@ "source_file": "package.json", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_hook_form", - "confidence_score": 1.0 + "target": "package_dependencies_react_hook_form" }, { "relation": "contains", @@ -99642,9 +99652,9 @@ "source_file": "package.json", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_hot_toast", - "confidence_score": 1.0 + "target": "package_dependencies_react_hot_toast" }, { "relation": "contains", @@ -99652,9 +99662,9 @@ "source_file": "package.json", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_leaflet", - "confidence_score": 1.0 + "target": "package_dependencies_react_leaflet" }, { "relation": "contains", @@ -99662,9 +99672,9 @@ "source_file": "package.json", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_router_dom", - "confidence_score": 1.0 + "target": "package_dependencies_react_router_dom" }, { "relation": "contains", @@ -99672,9 +99682,9 @@ "source_file": "package.json", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_react_select", - "confidence_score": 1.0 + "target": "package_dependencies_react_select" }, { "relation": "contains", @@ -99682,9 +99692,9 @@ "source_file": "package.json", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_recharts", - "confidence_score": 1.0 + "target": "package_dependencies_recharts" }, { "relation": "contains", @@ -99692,9 +99702,9 @@ "source_file": "package.json", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_sonner", - "confidence_score": 1.0 + "target": "package_dependencies_sonner" }, { "relation": "contains", @@ -99702,9 +99712,9 @@ "source_file": "package.json", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_tanstack_react_query", - "confidence_score": 1.0 + "target": "package_dependencies_tanstack_react_query" }, { "relation": "contains", @@ -99712,9 +99722,9 @@ "source_file": "package.json", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_tanstack_react_table", - "confidence_score": 1.0 + "target": "package_dependencies_tanstack_react_table" }, { "relation": "contains", @@ -99722,9 +99732,9 @@ "source_file": "package.json", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_types_leaflet", - "confidence_score": 1.0 + "target": "package_dependencies_types_leaflet" }, { "relation": "contains", @@ -99732,9 +99742,9 @@ "source_file": "package.json", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_zod", - "confidence_score": 1.0 + "target": "package_dependencies_zod" }, { "relation": "contains", @@ -99742,9 +99752,9 @@ "source_file": "package.json", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "package_dependencies", - "target": "package_dependencies_zustand", - "confidence_score": 1.0 + "target": "package_dependencies_zustand" }, { "relation": "contains", @@ -99752,9 +99762,9 @@ "source_file": "package.json", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "package_optionaldependencies", - "target": "package_optionaldependencies_lightningcss_darwin_arm64", - "confidence_score": 1.0 + "target": "package_optionaldependencies_lightningcss_darwin_arm64" }, { "relation": "contains", @@ -99762,9 +99772,9 @@ "source_file": "package.json", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "package_optionaldependencies", - "target": "package_optionaldependencies_lightningcss_linux_arm64_gnu", - "confidence_score": 1.0 + "target": "package_optionaldependencies_lightningcss_linux_arm64_gnu" }, { "relation": "contains", @@ -99772,9 +99782,9 @@ "source_file": "package.json", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "package_optionaldependencies", - "target": "package_optionaldependencies_tailwindcss_oxide_darwin_arm64", - "confidence_score": 1.0 + "target": "package_optionaldependencies_tailwindcss_oxide_darwin_arm64" }, { "relation": "contains", @@ -99782,9 +99792,9 @@ "source_file": "package.json", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "package_optionaldependencies", - "target": "package_optionaldependencies_tailwindcss_oxide_linux_arm64_gnu", - "confidence_score": 1.0 + "target": "package_optionaldependencies_tailwindcss_oxide_linux_arm64_gnu" }, { "relation": "contains", @@ -99792,9 +99802,9 @@ "source_file": "package.json", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build", - "confidence_score": 1.0 + "target": "package_scripts_build" }, { "relation": "contains", @@ -99802,9 +99812,9 @@ "source_file": "package.json", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev", - "confidence_score": 1.0 + "target": "package_scripts_dev" }, { "relation": "contains", @@ -99812,9 +99822,9 @@ "source_file": "package.json", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_server", - "confidence_score": 1.0 + "target": "package_scripts_dev_server" }, { "relation": "contains", @@ -99822,9 +99832,9 @@ "source_file": "package.json", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_watch", - "confidence_score": 1.0 + "target": "package_scripts_watch" }, { "relation": "contains", @@ -99832,9 +99842,9 @@ "source_file": "public/manifest.json", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_background_color", - "confidence_score": 1.0 + "target": "public_manifest_background_color" }, { "relation": "contains", @@ -99842,9 +99852,9 @@ "source_file": "public/manifest.json", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_description", - "confidence_score": 1.0 + "target": "public_manifest_description" }, { "relation": "contains", @@ -99852,9 +99862,9 @@ "source_file": "public/manifest.json", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_dir", - "confidence_score": 1.0 + "target": "public_manifest_dir" }, { "relation": "contains", @@ -99862,9 +99872,9 @@ "source_file": "public/manifest.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_display", - "confidence_score": 1.0 + "target": "public_manifest_display" }, { "relation": "contains", @@ -99872,9 +99882,9 @@ "source_file": "public/manifest.json", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_icons", - "confidence_score": 1.0 + "target": "public_manifest_icons" }, { "relation": "contains", @@ -99882,9 +99892,9 @@ "source_file": "public/manifest.json", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_lang", - "confidence_score": 1.0 + "target": "public_manifest_lang" }, { "relation": "contains", @@ -99892,9 +99902,9 @@ "source_file": "public/manifest.json", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_name", - "confidence_score": 1.0 + "target": "public_manifest_name" }, { "relation": "contains", @@ -99902,9 +99912,9 @@ "source_file": "public/manifest.json", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_orientation", - "confidence_score": 1.0 + "target": "public_manifest_orientation" }, { "relation": "contains", @@ -99912,9 +99922,9 @@ "source_file": "public/manifest.json", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_scope", - "confidence_score": 1.0 + "target": "public_manifest_scope" }, { "relation": "contains", @@ -99922,9 +99932,9 @@ "source_file": "public/manifest.json", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_short_name", - "confidence_score": 1.0 + "target": "public_manifest_short_name" }, { "relation": "contains", @@ -99932,9 +99942,9 @@ "source_file": "public/manifest.json", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_start_url", - "confidence_score": 1.0 + "target": "public_manifest_start_url" }, { "relation": "contains", @@ -99942,9 +99952,9 @@ "source_file": "public/manifest.json", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "public_manifest", - "target": "public_manifest_theme_color", - "confidence_score": 1.0 + "target": "public_manifest_theme_color" }, { "relation": "contains", @@ -99952,9 +99962,9 @@ "source_file": "public/sw.js", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "public_sw", - "target": "public_sw_shell_urls", - "confidence_score": 1.0 + "target": "public_sw_shell_urls" }, { "relation": "contains", @@ -99962,9 +99972,9 @@ "source_file": "seed_realistic_data.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "seed_realistic_data", - "target": "seed_realistic_data_makeschedule", - "confidence_score": 1.0 + "target": "seed_realistic_data_makeschedule" }, { "relation": "contains", @@ -99972,9 +99982,9 @@ "source_file": "seed_realistic_data.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "seed_realistic_data", - "target": "seed_realistic_data_newuuid", - "confidence_score": 1.0 + "target": "seed_realistic_data_newuuid" }, { "relation": "contains", @@ -99982,9 +99992,9 @@ "source_file": "seed_realistic_data.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "seed_realistic_data", - "target": "seed_realistic_data_nextmobile", - "confidence_score": 1.0 + "target": "seed_realistic_data_nextmobile" }, { "relation": "contains", @@ -99992,9 +100002,9 @@ "source_file": "seed_test_data.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "seed_test_data", - "target": "seed_test_data_slot", - "confidence_score": 1.0 + "target": "seed_test_data_slot" }, { "relation": "contains", @@ -100002,9 +100012,9 @@ "source_file": "seed_test_data.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "seed_test_data", - "target": "seed_test_data_today", - "confidence_score": 1.0 + "target": "seed_test_data_today" }, { "relation": "calls", @@ -100034,9 +100044,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller" }, { "relation": "imports", @@ -100045,9 +100055,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -100056,9 +100066,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "financialbreakdown", - "confidence_score": 1.0 + "target": "financialbreakdown" }, { "relation": "imports", @@ -100067,9 +100077,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "rate", - "confidence_score": 1.0 + "target": "rate" }, { "relation": "imports", @@ -100078,9 +100088,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "settlement", - "confidence_score": 1.0 + "target": "settlement" }, { "relation": "imports", @@ -100089,9 +100099,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "smslog", - "confidence_score": 1.0 + "target": "smslog" }, { "relation": "imports", @@ -100100,9 +100110,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "imports", @@ -100111,9 +100121,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "imports", @@ -100122,9 +100132,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "method", @@ -100132,9 +100142,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L630", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_appointments", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_appointments" }, { "relation": "method", @@ -100142,9 +100152,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L563", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats" }, { "relation": "method", @@ -100152,9 +100162,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_clinicslist", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_clinicslist" }, { "relation": "method", @@ -100162,9 +100172,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1253", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_comments", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_comments" }, { "relation": "method", @@ -100172,9 +100182,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_construct", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_construct" }, { "relation": "method", @@ -100182,9 +100192,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L743", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_createappointment", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_createappointment" }, { "relation": "method", @@ -100192,9 +100202,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_createclinic", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_createclinic" }, { "relation": "method", @@ -100202,9 +100212,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_createdoctor", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_createdoctor" }, { "relation": "method", @@ -100212,9 +100222,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1869", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_dashboardcharts", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_dashboardcharts" }, { "relation": "method", @@ -100222,9 +100232,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1623", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_dashboardrecent", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_dashboardrecent" }, { "relation": "method", @@ -100232,9 +100242,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1741", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_dashboardstats", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_dashboardstats" }, { "relation": "method", @@ -100242,9 +100252,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L549", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_deleteclinic", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_deleteclinic" }, { "relation": "method", @@ -100252,9 +100262,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_deleteuser", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_deleteuser" }, { "relation": "method", @@ -100262,9 +100272,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_doctorslist", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_doctorslist" }, { "relation": "method", @@ -100272,9 +100282,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_doctorstats", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_doctorstats" }, { "relation": "method", @@ -100282,9 +100292,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L975", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_financialbreakdowns" }, { "relation": "method", @@ -100292,9 +100302,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1051", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_financialsummary", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_financialsummary" }, { "relation": "method", @@ -100302,9 +100312,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L837", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_payments", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_payments" }, { "relation": "method", @@ -100312,9 +100322,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1166", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_rates", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_rates" }, { "relation": "method", @@ -100322,9 +100332,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L883", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_representations", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_representations" }, { "relation": "method", @@ -100332,9 +100342,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1082", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_secretaries", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_secretaries" }, { "relation": "method", @@ -100342,9 +100352,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1500", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_settlementdetail", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_settlementdetail" }, { "relation": "method", @@ -100352,9 +100362,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1417", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_settlements", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_settlements" }, { "relation": "method", @@ -100362,9 +100372,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1342", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_smslogs", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_smslogs" }, { "relation": "method", @@ -100372,9 +100382,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1548", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_smssampletemplates", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_smssampletemplates" }, { "relation": "method", @@ -100382,9 +100392,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L537", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus" }, { "relation": "method", @@ -100392,9 +100402,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L281", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus" }, { "relation": "method", @@ -100402,9 +100412,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_toggleuserstatus" }, { "relation": "method", @@ -100412,9 +100422,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_updateuser", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_updateuser" }, { "relation": "method", @@ -100422,9 +100432,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_updateuserrole", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_updateuserrole" }, { "relation": "method", @@ -100432,9 +100442,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_userdetail", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_userdetail" }, { "relation": "method", @@ -100442,9 +100452,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L199", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_users", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_users" }, { "relation": "method", @@ -100452,9 +100462,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_adminapicontroller_adminapicontroller_userstats", - "confidence_score": 1.0 + "target": "controller_adminapicontroller_adminapicontroller_userstats" }, { "relation": "inherits", @@ -100462,9 +100472,9 @@ "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "references", @@ -100473,9 +100483,9 @@ "source_location": "L40", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_userstats", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100484,9 +100494,9 @@ "source_location": "L630", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_appointments", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100495,9 +100505,9 @@ "source_location": "L563", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100506,9 +100516,9 @@ "source_location": "L439", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_clinicslist", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100517,9 +100527,9 @@ "source_location": "L1253", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_comments", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100528,9 +100538,9 @@ "source_location": "L743", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createappointment", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100539,9 +100549,9 @@ "source_location": "L496", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createclinic", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100550,9 +100560,9 @@ "source_location": "L383", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createdoctor", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100561,9 +100571,9 @@ "source_location": "L1869", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_dashboardcharts", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100572,9 +100582,9 @@ "source_location": "L1623", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_dashboardrecent", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100583,9 +100593,9 @@ "source_location": "L1741", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_dashboardstats", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100594,9 +100604,9 @@ "source_location": "L549", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_deleteclinic", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100605,9 +100615,9 @@ "source_location": "L187", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_deleteuser", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100616,9 +100626,9 @@ "source_location": "L293", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_doctorslist", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100627,9 +100637,9 @@ "source_location": "L256", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_doctorstats", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100638,9 +100648,9 @@ "source_location": "L975", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100649,9 +100659,9 @@ "source_location": "L1051", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_financialsummary", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100660,9 +100670,9 @@ "source_location": "L837", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_payments", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100671,9 +100681,9 @@ "source_location": "L1166", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_rates", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100682,9 +100692,9 @@ "source_location": "L883", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_representations", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100693,9 +100703,9 @@ "source_location": "L1082", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_secretaries", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100704,9 +100714,9 @@ "source_location": "L1500", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_settlementdetail", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100715,9 +100725,9 @@ "source_location": "L1417", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_settlements", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100726,9 +100736,9 @@ "source_location": "L1342", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_smslogs", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100737,9 +100747,9 @@ "source_location": "L1548", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_smssampletemplates", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100748,9 +100758,9 @@ "source_location": "L537", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100759,9 +100769,9 @@ "source_location": "L281", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100770,9 +100780,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100781,9 +100791,9 @@ "source_location": "L159", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_updateuser", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100792,9 +100802,9 @@ "source_location": "L112", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_updateuserrole", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100803,9 +100813,9 @@ "source_location": "L139", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_userdetail", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100814,9 +100824,9 @@ "source_location": "L199", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_users", - "target": "src_admin_controller_adminapicontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_jsonresponse" }, { "relation": "references", @@ -100825,9 +100835,9 @@ "source_location": "L112", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_updateuserrole", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100836,9 +100846,9 @@ "source_location": "L630", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_appointments", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100847,9 +100857,9 @@ "source_location": "L563", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100858,9 +100868,9 @@ "source_location": "L439", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_clinicslist", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100869,9 +100879,9 @@ "source_location": "L1253", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_comments", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100880,9 +100890,9 @@ "source_location": "L743", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createappointment", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100891,9 +100901,9 @@ "source_location": "L496", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createclinic", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100902,9 +100912,9 @@ "source_location": "L383", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_createdoctor", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100913,9 +100923,9 @@ "source_location": "L1869", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_dashboardcharts", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100924,9 +100934,9 @@ "source_location": "L293", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_doctorslist", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100935,9 +100945,9 @@ "source_location": "L975", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100946,9 +100956,9 @@ "source_location": "L837", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_payments", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100957,9 +100967,9 @@ "source_location": "L1166", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_rates", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100968,9 +100978,9 @@ "source_location": "L883", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_representations", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100979,9 +100989,9 @@ "source_location": "L1082", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_secretaries", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -100990,9 +101000,9 @@ "source_location": "L1417", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_settlements", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -101001,9 +101011,9 @@ "source_location": "L1342", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_smslogs", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -101012,9 +101022,9 @@ "source_location": "L1548", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_smssampletemplates", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -101023,9 +101033,9 @@ "source_location": "L159", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_updateuser", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "references", @@ -101034,9 +101044,9 @@ "source_location": "L199", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_adminapicontroller_adminapicontroller_users", - "target": "src_admin_controller_adminapicontroller_php_request", - "confidence_score": 1.0 + "target": "src_admin_controller_adminapicontroller_php_request" }, { "relation": "calls", @@ -101287,9 +101297,9 @@ "source_file": "src/Admin/Controller/AdminController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_admincontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "contains", @@ -101297,9 +101307,9 @@ "source_file": "src/Admin/Controller/AdminController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_admincontroller", - "target": "controller_admincontroller_admincontroller", - "confidence_score": 1.0 + "target": "controller_admincontroller_admincontroller" }, { "relation": "imports", @@ -101308,9 +101318,9 @@ "source_file": "src/Admin/Controller/AdminController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_admincontroller", - "target": "src_admin_controller_admincontroller_php_response", - "confidence_score": 1.0 + "target": "src_admin_controller_admincontroller_php_response" }, { "relation": "inherits", @@ -101318,9 +101328,9 @@ "source_file": "src/Admin/Controller/AdminController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_admincontroller_admincontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "method", @@ -101328,9 +101338,9 @@ "source_file": "src/Admin/Controller/AdminController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_admincontroller_admincontroller", - "target": "controller_admincontroller_admincontroller_index", - "confidence_score": 1.0 + "target": "controller_admincontroller_admincontroller_index" }, { "relation": "imports", @@ -101339,9 +101349,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "inherits", @@ -101349,9 +101359,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "imports", @@ -101360,9 +101370,9 @@ "source_file": "src/Shared/Controller/HomeController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_homecontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "inherits", @@ -101370,9 +101380,9 @@ "source_file": "src/Shared/Controller/HomeController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_homecontroller_homecontroller", - "target": "abstractcontroller", - "confidence_score": 1.0 + "target": "abstractcontroller" }, { "relation": "references", @@ -101381,9 +101391,9 @@ "source_location": "L11", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_admincontroller_admincontroller_index", - "target": "src_admin_controller_admincontroller_php_response", - "confidence_score": 1.0 + "target": "src_admin_controller_admincontroller_php_response" }, { "relation": "imports", @@ -101392,9 +101402,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "contains", @@ -101402,9 +101412,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand", - "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand", - "confidence_score": 1.0 + "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand" }, { "relation": "imports", @@ -101413,9 +101423,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand", - "target": "src_appointment_command_cancelexpiredappointmentscommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_appointment_command_cancelexpiredappointmentscommand_php_inputinterface" }, { "relation": "imports", @@ -101424,9 +101434,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand", - "target": "src_appointment_command_cancelexpiredappointmentscommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_appointment_command_cancelexpiredappointmentscommand_php_outputinterface" }, { "relation": "inherits", @@ -101434,9 +101444,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "method", @@ -101444,9 +101454,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand", - "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_construct", - "confidence_score": 1.0 + "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_construct" }, { "relation": "method", @@ -101454,9 +101464,9 @@ "source_file": "src/Appointment/Command/CancelExpiredAppointmentsCommand.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand", - "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute", - "confidence_score": 1.0 + "target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute" }, { "relation": "references_constant", @@ -101475,9 +101485,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "inherits", @@ -101485,9 +101495,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "references_constant", @@ -101506,9 +101516,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute", - "target": "src_appointment_command_cancelexpiredappointmentscommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_appointment_command_cancelexpiredappointmentscommand_php_inputinterface" }, { "relation": "references", @@ -101517,9 +101527,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute", - "target": "src_appointment_command_cancelexpiredappointmentscommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_appointment_command_cancelexpiredappointmentscommand_php_outputinterface" }, { "relation": "contains", @@ -101527,9 +101537,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller" }, { "relation": "imports", @@ -101538,9 +101548,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -101549,9 +101559,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "src_appointment_controller_appointmentcontroller_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_appointment" }, { "relation": "imports", @@ -101560,9 +101570,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "src_appointment_controller_appointmentcontroller_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_doctor" }, { "relation": "imports", @@ -101571,9 +101581,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "imports", @@ -101582,9 +101592,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "imports", @@ -101593,9 +101603,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "method", @@ -101603,9 +101613,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_book", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_book" }, { "relation": "method", @@ -101613,9 +101623,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L456", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_canmanage" }, { "relation": "method", @@ -101623,9 +101633,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L449", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_canview", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_canview" }, { "relation": "method", @@ -101633,9 +101643,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_construct", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_construct" }, { "relation": "method", @@ -101643,9 +101653,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L303", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_get", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_get" }, { "relation": "method", @@ -101653,9 +101663,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L348", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_listbydoctor", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_listbydoctor" }, { "relation": "method", @@ -101663,9 +101673,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L407", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_listbyuser", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_listbyuser" }, { "relation": "method", @@ -101673,9 +101683,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_monthavailability", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_monthavailability" }, { "relation": "method", @@ -101683,9 +101693,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L463", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_resolveslotlocationid", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_resolveslotlocationid" }, { "relation": "method", @@ -101693,9 +101703,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_slots", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_slots" }, { "relation": "method", @@ -101703,9 +101713,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L468", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_appointmentcontroller_appointmentcontroller_updatestatus", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_updatestatus" }, { "relation": "inherits", @@ -101713,9 +101723,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "calls", @@ -101724,9 +101734,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_slots", - "target": "controller_appointmentcontroller_appointmentcontroller_get", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_get" }, { "relation": "references", @@ -101735,9 +101745,9 @@ "source_location": "L40", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_slots", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101746,9 +101756,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_slots", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101757,9 +101767,9 @@ "source_location": "L181", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_book", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101768,9 +101778,9 @@ "source_location": "L348", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbydoctor", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101779,9 +101789,9 @@ "source_location": "L407", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbyuser", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101790,9 +101800,9 @@ "source_location": "L136", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_monthavailability", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101801,9 +101811,9 @@ "source_location": "L468", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_updatestatus", - "target": "src_appointment_controller_appointmentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_request" }, { "relation": "references", @@ -101812,9 +101822,9 @@ "source_location": "L181", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_book", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101823,9 +101833,9 @@ "source_location": "L303", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_get", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101834,9 +101844,9 @@ "source_location": "L348", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbydoctor", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101845,9 +101855,9 @@ "source_location": "L407", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbyuser", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101856,9 +101866,9 @@ "source_location": "L136", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_monthavailability", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "references", @@ -101867,9 +101877,9 @@ "source_location": "L468", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_updatestatus", - "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_jsonresponse" }, { "relation": "calls", @@ -101878,9 +101888,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_monthavailability", - "target": "controller_appointmentcontroller_appointmentcontroller_get", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_get" }, { "relation": "calls", @@ -101900,9 +101910,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_book", - "target": "controller_appointmentcontroller_appointmentcontroller_resolveslotlocationid", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_resolveslotlocationid" }, { "relation": "calls", @@ -101943,9 +101953,9 @@ "source_location": "L181", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_book", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -101954,9 +101964,9 @@ "source_location": "L456", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_canmanage", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -101965,9 +101975,9 @@ "source_location": "L449", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_canview", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -101976,9 +101986,9 @@ "source_location": "L303", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_get", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -101987,9 +101997,9 @@ "source_location": "L348", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbydoctor", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -101998,9 +102008,9 @@ "source_location": "L407", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbyuser", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "references", @@ -102009,9 +102019,9 @@ "source_location": "L468", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_updatestatus", - "target": "src_appointment_controller_appointmentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_user" }, { "relation": "calls", @@ -102020,9 +102030,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L341", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_get", - "target": "controller_appointmentcontroller_appointmentcontroller_canview", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_canview" }, { "relation": "calls", @@ -102031,9 +102041,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbydoctor", - "target": "controller_appointmentcontroller_appointmentcontroller_get", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_get" }, { "relation": "calls", @@ -102042,9 +102052,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_listbyuser", - "target": "controller_appointmentcontroller_appointmentcontroller_get", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_get" }, { "relation": "references", @@ -102053,9 +102063,9 @@ "source_location": "L449", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_canview", - "target": "src_appointment_controller_appointmentcontroller_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_appointment" }, { "relation": "references", @@ -102064,9 +102074,9 @@ "source_location": "L456", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_canmanage", - "target": "src_appointment_controller_appointmentcontroller_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_appointment" }, { "relation": "references_constant", @@ -102085,9 +102095,9 @@ "source_file": "src/Appointment/Controller/AppointmentController.php", "source_location": "L518", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_updatestatus", - "target": "controller_appointmentcontroller_appointmentcontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_appointmentcontroller_appointmentcontroller_canmanage" }, { "relation": "references", @@ -102096,9 +102106,9 @@ "source_location": "L463", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentcontroller_appointmentcontroller_resolveslotlocationid", - "target": "src_appointment_controller_appointmentcontroller_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentcontroller_php_doctor" }, { "relation": "contains", @@ -102106,9 +102116,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller" }, { "relation": "imports", @@ -102117,9 +102127,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -102128,9 +102138,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "dateoverride", - "confidence_score": 1.0 + "target": "dateoverride" }, { "relation": "imports", @@ -102139,9 +102149,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "holiday", - "confidence_score": 1.0 + "target": "holiday" }, { "relation": "imports", @@ -102150,9 +102160,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "imports", @@ -102161,9 +102171,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "imports", @@ -102172,9 +102182,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "method", @@ -102182,9 +102192,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L341", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_availablelocations", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_availablelocations" }, { "relation": "method", @@ -102192,9 +102202,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_construct", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_construct" }, { "relation": "method", @@ -102202,9 +102212,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createholiday", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createholiday" }, { "relation": "method", @@ -102212,9 +102222,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createoverride", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createoverride" }, { "relation": "method", @@ -102222,9 +102232,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule" }, { "relation": "method", @@ -102232,9 +102242,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L261", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteholiday", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteholiday" }, { "relation": "method", @@ -102242,9 +102252,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteoverride", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteoverride" }, { "relation": "method", @@ -102252,9 +102262,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteschedule", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteschedule" }, { "relation": "method", @@ -102262,9 +102272,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L235", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getoverride", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getoverride" }, { "relation": "method", @@ -102272,9 +102282,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getschedule", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getschedule" }, { "relation": "method", @@ -102282,9 +102292,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listholidays", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listholidays" }, { "relation": "method", @@ -102292,9 +102302,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listoverrides", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listoverrides" }, { "relation": "method", @@ -102302,9 +102312,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L310", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateholiday", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateholiday" }, { "relation": "method", @@ -102312,9 +102322,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateoverride", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateoverride" }, { "relation": "method", @@ -102322,9 +102332,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule" }, { "relation": "method", @@ -102332,9 +102342,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L371", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation" }, { "relation": "inherits", @@ -102342,9 +102352,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "calls", @@ -102353,9 +102363,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation" }, { "relation": "references", @@ -102364,9 +102374,9 @@ "source_location": "L41", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102375,9 +102385,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102386,9 +102396,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102397,9 +102407,9 @@ "source_location": "L278", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102408,9 +102418,9 @@ "source_location": "L162", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102419,9 +102429,9 @@ "source_location": "L310", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102430,9 +102440,9 @@ "source_location": "L192", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102441,9 +102451,9 @@ "source_location": "L77", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_request" }, { "relation": "references", @@ -102452,9 +102462,9 @@ "source_location": "L278", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102463,9 +102473,9 @@ "source_location": "L162", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102474,9 +102484,9 @@ "source_location": "L261", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102485,9 +102495,9 @@ "source_location": "L218", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102496,9 +102506,9 @@ "source_location": "L127", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102507,9 +102517,9 @@ "source_location": "L310", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102518,9 +102528,9 @@ "source_location": "L192", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102529,9 +102539,9 @@ "source_location": "L77", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_user" }, { "relation": "references", @@ -102540,9 +102550,9 @@ "source_location": "L341", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_availablelocations", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102551,9 +102561,9 @@ "source_location": "L278", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102562,9 +102572,9 @@ "source_location": "L162", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_createoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102573,9 +102583,9 @@ "source_location": "L261", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102584,9 +102594,9 @@ "source_location": "L218", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102595,9 +102605,9 @@ "source_location": "L127", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_deleteschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102606,9 +102616,9 @@ "source_location": "L235", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102617,9 +102627,9 @@ "source_location": "L111", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_getschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102628,9 +102638,9 @@ "source_location": "L248", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listholidays", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102639,9 +102649,9 @@ "source_location": "L146", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_listoverrides", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102650,9 +102660,9 @@ "source_location": "L310", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateholiday", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102661,9 +102671,9 @@ "source_location": "L192", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateoverride", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "references", @@ -102672,9 +102682,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule", - "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_appointmentsettingscontroller_php_jsonresponse" }, { "relation": "calls", @@ -102683,9 +102693,9 @@ "source_file": "src/Appointment/Controller/AppointmentSettingsController.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_appointmentsettingscontroller_appointmentsettingscontroller_updateschedule", - "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation", - "confidence_score": 1.0 + "target": "controller_appointmentsettingscontroller_appointmentsettingscontroller_validatesessionshavelocation" }, { "relation": "imports", @@ -102694,9 +102704,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -102704,9 +102714,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller" }, { "relation": "imports", @@ -102715,9 +102725,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller", - "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse" }, { "relation": "imports", @@ -102726,9 +102736,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller", - "target": "src_appointment_controller_myappointmentscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_request" }, { "relation": "imports", @@ -102737,9 +102747,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller", - "target": "src_appointment_controller_myappointmentscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_user" }, { "relation": "inherits", @@ -102747,9 +102757,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -102757,9 +102767,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller_construct", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_construct" }, { "relation": "method", @@ -102767,9 +102777,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller_createappointment", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_createappointment" }, { "relation": "method", @@ -102777,9 +102787,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_myappointments" }, { "relation": "method", @@ -102787,9 +102797,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter" }, { "relation": "method", @@ -102797,9 +102807,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller", - "target": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_todaystats" }, { "relation": "calls", @@ -102819,9 +102829,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_createappointment", - "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse" }, { "relation": "references", @@ -102830,9 +102840,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_createappointment", - "target": "src_appointment_controller_myappointmentscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_request" }, { "relation": "references_constant", @@ -102852,9 +102862,9 @@ "source_location": "L97", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "target": "src_appointment_controller_myappointmentscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_request" }, { "relation": "references", @@ -102863,9 +102873,9 @@ "source_location": "L203", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "target": "src_appointment_controller_myappointmentscontroller_php_request", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_request" }, { "relation": "references", @@ -102874,9 +102884,9 @@ "source_location": "L97", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "target": "src_appointment_controller_myappointmentscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_user" }, { "relation": "references", @@ -102885,9 +102895,9 @@ "source_location": "L278", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter", - "target": "src_appointment_controller_myappointmentscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_user" }, { "relation": "references", @@ -102896,9 +102906,9 @@ "source_location": "L203", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "target": "src_appointment_controller_myappointmentscontroller_php_user", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_user" }, { "relation": "references", @@ -102907,9 +102917,9 @@ "source_location": "L97", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse" }, { "relation": "references", @@ -102918,9 +102928,9 @@ "source_location": "L203", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_appointment_controller_myappointmentscontroller_php_jsonresponse" }, { "relation": "calls", @@ -102929,9 +102939,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_myappointments", - "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter" }, { "relation": "calls", @@ -102951,9 +102961,9 @@ "source_file": "src/Appointment/Controller/MyAppointmentsController.php", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_myappointmentscontroller_myappointmentscontroller_todaystats", - "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter", - "confidence_score": 1.0 + "target": "controller_myappointmentscontroller_myappointmentscontroller_resolvesecretaryfilter" }, { "relation": "calls", @@ -102972,9 +102982,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment", - "target": "entity_appointment_appointment", - "confidence_score": 1.0 + "target": "entity_appointment_appointment" }, { "relation": "imports", @@ -102983,9 +102993,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment", - "target": "src_appointment_entity_appointment_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_doctor" }, { "relation": "imports", @@ -102994,9 +103004,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment", - "target": "src_appointment_entity_appointment_php_user", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_user" }, { "relation": "method", @@ -103004,9 +103014,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_cantransitionto", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_cantransitionto" }, { "relation": "method", @@ -103014,9 +103024,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_construct", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_construct" }, { "relation": "method", @@ -103024,9 +103034,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getaddressid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getaddressid" }, { "relation": "method", @@ -103034,9 +103044,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getbookingrepresentationid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getbookingrepresentationid" }, { "relation": "method", @@ -103044,9 +103054,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getdoctor", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getdoctor" }, { "relation": "method", @@ -103054,9 +103064,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getexpiresat", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getexpiresat" }, { "relation": "method", @@ -103064,9 +103074,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getid" }, { "relation": "method", @@ -103074,9 +103084,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getnote", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getnote" }, { "relation": "method", @@ -103084,9 +103094,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getpatientgender", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getpatientgender" }, { "relation": "method", @@ -103094,9 +103104,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getpatientmobile", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getpatientmobile" }, { "relation": "method", @@ -103104,9 +103114,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getpatientname", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getpatientname" }, { "relation": "method", @@ -103114,9 +103124,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getpatientnationalcode", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getpatientnationalcode" }, { "relation": "method", @@ -103124,9 +103134,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getpatientreason", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getpatientreason" }, { "relation": "method", @@ -103134,9 +103144,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getslotend", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getslotend" }, { "relation": "method", @@ -103144,9 +103154,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getslotstart", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getslotstart" }, { "relation": "method", @@ -103154,9 +103164,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getstatus", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getstatus" }, { "relation": "method", @@ -103164,9 +103174,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getuser", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getuser" }, { "relation": "method", @@ -103174,9 +103184,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getuuid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getuuid" }, { "relation": "method", @@ -103184,9 +103194,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_getversion", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getversion" }, { "relation": "method", @@ -103194,9 +103204,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_markpendingwithttl", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_markpendingwithttl" }, { "relation": "method", @@ -103204,9 +103214,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setaddressid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setaddressid" }, { "relation": "method", @@ -103214,9 +103224,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setbookingrepresentationid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setbookingrepresentationid" }, { "relation": "method", @@ -103224,9 +103234,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setnote", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setnote" }, { "relation": "method", @@ -103234,9 +103244,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setpatientgender", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setpatientgender" }, { "relation": "method", @@ -103244,9 +103254,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setpatientmobile", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setpatientmobile" }, { "relation": "method", @@ -103254,9 +103264,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setpatientname", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setpatientname" }, { "relation": "method", @@ -103264,9 +103274,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setpatientnationalcode", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setpatientnationalcode" }, { "relation": "method", @@ -103274,9 +103284,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_setpatientreason", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_setpatientreason" }, { "relation": "method", @@ -103284,9 +103294,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_toarray", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_toarray" }, { "relation": "method", @@ -103294,9 +103304,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "entity_appointment_appointment_transitionto", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_transitionto" }, { "relation": "references", @@ -103305,9 +103315,9 @@ "source_location": "L48", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "src_appointment_entity_appointment_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_doctor" }, { "relation": "references", @@ -103316,9 +103326,9 @@ "source_location": "L52", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_appointment_appointment", - "target": "src_appointment_entity_appointment_php_user", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_user" }, { "relation": "references", @@ -103327,9 +103337,9 @@ "source_location": "L98", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_construct", - "target": "src_appointment_entity_appointment_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_doctor" }, { "relation": "references", @@ -103338,9 +103348,9 @@ "source_location": "L111", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_getdoctor", - "target": "src_appointment_entity_appointment_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_doctor" }, { "relation": "references", @@ -103349,9 +103359,9 @@ "source_location": "L98", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_construct", - "target": "src_appointment_entity_appointment_php_user", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_user" }, { "relation": "references", @@ -103360,9 +103370,9 @@ "source_location": "L112", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_getuser", - "target": "src_appointment_entity_appointment_php_user", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_user" }, { "relation": "calls", @@ -103382,9 +103392,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment_toarray", - "target": "entity_appointment_appointment_getuuid", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_getuuid" }, { "relation": "references", @@ -103393,9 +103403,9 @@ "source_location": "L127", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setnote", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103404,9 +103414,9 @@ "source_location": "L136", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_markpendingwithttl", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103415,9 +103425,9 @@ "source_location": "L129", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setaddressid", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103426,9 +103436,9 @@ "source_location": "L128", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setbookingrepresentationid", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103437,9 +103447,9 @@ "source_location": "L133", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setpatientgender", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103448,9 +103458,9 @@ "source_location": "L131", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setpatientmobile", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103459,9 +103469,9 @@ "source_location": "L130", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setpatientname", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103470,9 +103480,9 @@ "source_location": "L132", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setpatientnationalcode", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103481,9 +103491,9 @@ "source_location": "L134", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_setpatientreason", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "references", @@ -103492,9 +103502,9 @@ "source_location": "L148", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_appointment_appointment_transitionto", - "target": "src_appointment_entity_appointment_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_appointment_php_self" }, { "relation": "calls", @@ -103514,9 +103524,9 @@ "source_file": "src/Appointment/Entity/Appointment.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_appointment_appointment_transitionto", - "target": "entity_appointment_appointment_cantransitionto", - "confidence_score": 1.0 + "target": "entity_appointment_appointment_cantransitionto" }, { "relation": "calls", @@ -103535,9 +103545,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride", - "target": "entity_dateoverride_dateoverride", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride" }, { "relation": "imports", @@ -103546,9 +103556,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride", - "target": "src_appointment_entity_dateoverride_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_doctor" }, { "relation": "method", @@ -103556,9 +103566,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_construct", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_construct" }, { "relation": "method", @@ -103566,9 +103576,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getdate", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getdate" }, { "relation": "method", @@ -103576,9 +103586,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getdoctor", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getdoctor" }, { "relation": "method", @@ -103586,9 +103596,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getid", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getid" }, { "relation": "method", @@ -103596,9 +103606,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getreason", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getreason" }, { "relation": "method", @@ -103606,9 +103616,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getsetting", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getsetting" }, { "relation": "method", @@ -103616,9 +103626,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_getuuid", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getuuid" }, { "relation": "method", @@ -103626,9 +103636,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_isactive", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_isactive" }, { "relation": "method", @@ -103636,9 +103646,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_setactive", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_setactive" }, { "relation": "method", @@ -103646,9 +103656,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_setdate", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_setdate" }, { "relation": "method", @@ -103656,9 +103666,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_setreason", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_setreason" }, { "relation": "method", @@ -103666,9 +103676,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_setsetting", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_setsetting" }, { "relation": "method", @@ -103676,9 +103686,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_toarray", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_toarray" }, { "relation": "method", @@ -103686,9 +103696,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "entity_dateoverride_dateoverride_touch", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_touch" }, { "relation": "references", @@ -103697,9 +103707,9 @@ "source_location": "L22", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride", - "target": "src_appointment_entity_dateoverride_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_doctor" }, { "relation": "references", @@ -103708,9 +103718,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_construct", - "target": "src_appointment_entity_dateoverride_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_doctor" }, { "relation": "references", @@ -103719,9 +103729,9 @@ "source_location": "L56", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_getdoctor", - "target": "src_appointment_entity_dateoverride_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_doctor" }, { "relation": "calls", @@ -103741,9 +103751,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_toarray", - "target": "entity_dateoverride_dateoverride_getuuid", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_getuuid" }, { "relation": "calls", @@ -103752,9 +103762,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setdate", - "target": "entity_dateoverride_dateoverride_touch", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_touch" }, { "relation": "references", @@ -103763,9 +103773,9 @@ "source_location": "L62", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setdate", - "target": "src_appointment_entity_dateoverride_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_self" }, { "relation": "references", @@ -103774,9 +103784,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setactive", - "target": "src_appointment_entity_dateoverride_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_self" }, { "relation": "references", @@ -103785,9 +103795,9 @@ "source_location": "L65", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setreason", - "target": "src_appointment_entity_dateoverride_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_self" }, { "relation": "references", @@ -103796,9 +103806,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setsetting", - "target": "src_appointment_entity_dateoverride_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_dateoverride_php_self" }, { "relation": "calls", @@ -103807,9 +103817,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setactive", - "target": "entity_dateoverride_dateoverride_touch", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_touch" }, { "relation": "calls", @@ -103818,9 +103828,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setsetting", - "target": "entity_dateoverride_dateoverride_touch", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_touch" }, { "relation": "calls", @@ -103829,9 +103839,9 @@ "source_file": "src/Appointment/Entity/DateOverride.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_dateoverride_dateoverride_setreason", - "target": "entity_dateoverride_dateoverride_touch", - "confidence_score": 1.0 + "target": "entity_dateoverride_dateoverride_touch" }, { "relation": "calls", @@ -103850,9 +103860,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday", - "target": "entity_holiday_holiday", - "confidence_score": 1.0 + "target": "entity_holiday_holiday" }, { "relation": "imports", @@ -103861,9 +103871,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday", - "target": "src_appointment_entity_holiday_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_doctor" }, { "relation": "method", @@ -103871,9 +103881,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_construct", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_construct" }, { "relation": "method", @@ -103881,9 +103891,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getdoctor", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getdoctor" }, { "relation": "method", @@ -103891,9 +103901,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getenddate", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getenddate" }, { "relation": "method", @@ -103901,9 +103911,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getid", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getid" }, { "relation": "method", @@ -103911,9 +103921,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getreason", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getreason" }, { "relation": "method", @@ -103921,9 +103931,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getstartdate", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getstartdate" }, { "relation": "method", @@ -103931,9 +103941,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_getuuid", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getuuid" }, { "relation": "method", @@ -103941,9 +103951,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_isactive", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_isactive" }, { "relation": "method", @@ -103951,9 +103961,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_setactive", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_setactive" }, { "relation": "method", @@ -103961,9 +103971,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_setenddate", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_setenddate" }, { "relation": "method", @@ -103971,9 +103981,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_setreason", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_setreason" }, { "relation": "method", @@ -103981,9 +103991,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_setstartdate", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_setstartdate" }, { "relation": "method", @@ -103991,9 +104001,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_toarray", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_toarray" }, { "relation": "method", @@ -104001,9 +104011,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "entity_holiday_holiday_touch", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_touch" }, { "relation": "references", @@ -104012,9 +104022,9 @@ "source_location": "L22", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_holiday_holiday", - "target": "src_appointment_entity_holiday_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_doctor" }, { "relation": "references", @@ -104023,9 +104033,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_construct", - "target": "src_appointment_entity_holiday_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_doctor" }, { "relation": "references", @@ -104034,9 +104044,9 @@ "source_location": "L56", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_getdoctor", - "target": "src_appointment_entity_holiday_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_doctor" }, { "relation": "calls", @@ -104056,9 +104066,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday_toarray", - "target": "entity_holiday_holiday_getuuid", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_getuuid" }, { "relation": "calls", @@ -104067,9 +104077,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday_setstartdate", - "target": "entity_holiday_holiday_touch", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_touch" }, { "relation": "references", @@ -104078,9 +104088,9 @@ "source_location": "L62", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_setstartdate", - "target": "src_appointment_entity_holiday_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_self" }, { "relation": "references", @@ -104089,9 +104099,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_setactive", - "target": "src_appointment_entity_holiday_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_self" }, { "relation": "references", @@ -104100,9 +104110,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_setenddate", - "target": "src_appointment_entity_holiday_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_self" }, { "relation": "references", @@ -104111,9 +104121,9 @@ "source_location": "L65", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_holiday_holiday_setreason", - "target": "src_appointment_entity_holiday_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_holiday_php_self" }, { "relation": "calls", @@ -104122,9 +104132,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday_setenddate", - "target": "entity_holiday_holiday_touch", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_touch" }, { "relation": "calls", @@ -104133,9 +104143,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday_setactive", - "target": "entity_holiday_holiday_touch", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_touch" }, { "relation": "calls", @@ -104144,9 +104154,9 @@ "source_file": "src/Appointment/Entity/Holiday.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_holiday_holiday_setreason", - "target": "entity_holiday_holiday_touch", - "confidence_score": 1.0 + "target": "entity_holiday_holiday_touch" }, { "relation": "calls", @@ -104165,9 +104175,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule" }, { "relation": "imports", @@ -104176,9 +104186,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule", - "target": "src_appointment_entity_weeklyschedule_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_doctor" }, { "relation": "method", @@ -104186,9 +104196,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_construct", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_construct" }, { "relation": "method", @@ -104196,9 +104206,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getdayschedule", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getdayschedule" }, { "relation": "method", @@ -104206,9 +104216,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getdoctor", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getdoctor" }, { "relation": "method", @@ -104216,9 +104226,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getid", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getid" }, { "relation": "method", @@ -104226,9 +104236,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getmeta", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getmeta" }, { "relation": "method", @@ -104236,9 +104246,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getsetting", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getsetting" }, { "relation": "method", @@ -104246,9 +104256,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_getuuid", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getuuid" }, { "relation": "method", @@ -104256,9 +104266,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_setmeta", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_setmeta" }, { "relation": "method", @@ -104266,9 +104276,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_setsetting", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_setsetting" }, { "relation": "method", @@ -104276,9 +104286,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "entity_weeklyschedule_weeklyschedule_toarray", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_toarray" }, { "relation": "references", @@ -104287,9 +104297,9 @@ "source_location": "L31", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule", - "target": "src_appointment_entity_weeklyschedule_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_doctor" }, { "relation": "references", @@ -104298,9 +104308,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_construct", - "target": "src_appointment_entity_weeklyschedule_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_doctor" }, { "relation": "references", @@ -104309,9 +104319,9 @@ "source_location": "L55", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_getdoctor", - "target": "src_appointment_entity_weeklyschedule_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_doctor" }, { "relation": "calls", @@ -104331,9 +104341,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_toarray", - "target": "entity_weeklyschedule_weeklyschedule_getuuid", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getuuid" }, { "relation": "calls", @@ -104353,9 +104363,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_setsetting", - "target": "src_appointment_entity_weeklyschedule_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_self" }, { "relation": "references", @@ -104364,9 +104374,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_setmeta", - "target": "src_appointment_entity_weeklyschedule_php_self", - "confidence_score": 1.0 + "target": "src_appointment_entity_weeklyschedule_php_self" }, { "relation": "calls", @@ -104375,9 +104385,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_setmeta", - "target": "entity_weeklyschedule_weeklyschedule_getmeta", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getmeta" }, { "relation": "calls", @@ -104386,9 +104396,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_toarray", - "target": "entity_weeklyschedule_weeklyschedule_getmeta", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getmeta" }, { "relation": "calls", @@ -104408,9 +104418,9 @@ "source_file": "src/Appointment/Entity/WeeklySchedule.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_weeklyschedule_weeklyschedule_toarray", - "target": "entity_weeklyschedule_weeklyschedule_getdayschedule", - "confidence_score": 1.0 + "target": "entity_weeklyschedule_weeklyschedule_getdayschedule" }, { "relation": "contains", @@ -104418,9 +104428,9 @@ "source_file": "src/Appointment/Message/ExpireAppointmentsMessage.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "message_expireappointmentsmessage", - "target": "message_expireappointmentsmessage_expireappointmentsmessage", - "confidence_score": 1.0 + "target": "message_expireappointmentsmessage_expireappointmentsmessage" }, { "relation": "imports", @@ -104429,9 +104439,9 @@ "source_file": "src/Appointment/MessageHandler/ExpireAppointmentsHandler.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "messagehandler_expireappointmentshandler", - "target": "expireappointmentsmessage", - "confidence_score": 1.0 + "target": "expireappointmentsmessage" }, { "relation": "contains", @@ -104439,9 +104449,9 @@ "source_file": "src/Appointment/MessageHandler/ExpireAppointmentsHandler.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "messagehandler_expireappointmentshandler", - "target": "messagehandler_expireappointmentshandler_expireappointmentshandler", - "confidence_score": 1.0 + "target": "messagehandler_expireappointmentshandler_expireappointmentshandler" }, { "relation": "method", @@ -104449,9 +104459,9 @@ "source_file": "src/Appointment/MessageHandler/ExpireAppointmentsHandler.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "messagehandler_expireappointmentshandler_expireappointmentshandler", - "target": "messagehandler_expireappointmentshandler_expireappointmentshandler_construct", - "confidence_score": 1.0 + "target": "messagehandler_expireappointmentshandler_expireappointmentshandler_construct" }, { "relation": "method", @@ -104459,9 +104469,9 @@ "source_file": "src/Appointment/MessageHandler/ExpireAppointmentsHandler.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "messagehandler_expireappointmentshandler_expireappointmentshandler", - "target": "messagehandler_expireappointmentshandler_expireappointmentshandler_invoke", - "confidence_score": 1.0 + "target": "messagehandler_expireappointmentshandler_expireappointmentshandler_invoke" }, { "relation": "references", @@ -104470,9 +104480,9 @@ "source_location": "L14", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "messagehandler_expireappointmentshandler_expireappointmentshandler_invoke", - "target": "expireappointmentsmessage", - "confidence_score": 1.0 + "target": "expireappointmentsmessage" }, { "relation": "imports", @@ -104481,9 +104491,9 @@ "source_file": "src/Schedule.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule", - "target": "expireappointmentsmessage", - "confidence_score": 1.0 + "target": "expireappointmentsmessage" }, { "relation": "contains", @@ -104491,9 +104501,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository" }, { "relation": "imports", @@ -104502,9 +104512,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104513,9 +104523,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "imports", @@ -104524,9 +104534,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "src_appointment_repository_appointmentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_doctor" }, { "relation": "imports", @@ -104535,9 +104545,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "src_appointment_repository_appointmentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_managerregistry" }, { "relation": "imports", @@ -104546,9 +104556,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository", - "target": "src_appointment_repository_appointmentrepository_php_user", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_user" }, { "relation": "method", @@ -104556,9 +104566,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_bookatomically", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_bookatomically" }, { "relation": "method", @@ -104566,9 +104576,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_construct", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_construct" }, { "relation": "method", @@ -104576,9 +104586,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_findbydoctor", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_findbydoctor" }, { "relation": "method", @@ -104586,9 +104596,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_findbyuser" }, { "relation": "method", @@ -104596,9 +104606,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_findbyuuid" }, { "relation": "method", @@ -104606,9 +104616,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_findexpiredpending", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_findexpiredpending" }, { "relation": "method", @@ -104616,9 +104626,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_findpaymentexpired", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_findpaymentexpired" }, { "relation": "method", @@ -104626,9 +104636,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_hasrecentconfirmed", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_hasrecentconfirmed" }, { "relation": "method", @@ -104636,9 +104646,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_isslottaken", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_isslottaken" }, { "relation": "method", @@ -104646,9 +104656,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_remove", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_remove" }, { "relation": "method", @@ -104656,9 +104666,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_save", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_save" }, { "relation": "method", @@ -104666,9 +104676,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "repository_appointmentrepository_appointmentrepository_savewithlock", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_savewithlock" }, { "relation": "inherits", @@ -104676,9 +104686,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104687,9 +104697,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104697,9 +104707,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104708,9 +104718,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104718,9 +104728,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104729,9 +104739,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104739,9 +104749,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository_claimitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104750,9 +104760,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104760,9 +104770,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104771,9 +104781,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104781,9 +104791,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104792,9 +104802,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104802,9 +104812,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104813,9 +104823,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104823,9 +104833,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104834,9 +104844,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104844,9 +104854,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104855,9 +104865,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104865,9 +104875,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104876,9 +104886,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104886,9 +104896,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104897,9 +104907,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104907,9 +104917,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104918,9 +104928,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104928,9 +104938,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104939,9 +104949,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104949,9 +104959,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104960,9 +104970,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104970,9 +104980,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -104981,9 +104991,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -104991,9 +105001,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105002,9 +105012,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105012,9 +105022,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105023,9 +105033,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105033,9 +105043,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105044,9 +105054,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105054,9 +105064,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105065,9 +105075,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105075,9 +105085,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105086,9 +105096,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105096,9 +105106,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105107,9 +105117,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105117,9 +105127,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105128,9 +105138,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105138,9 +105148,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105149,9 +105159,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105159,9 +105169,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105170,9 +105180,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105180,9 +105190,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105191,9 +105201,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105201,9 +105211,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105212,9 +105222,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105222,9 +105232,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository_preregistrationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105233,9 +105243,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105243,9 +105253,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105254,9 +105264,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105264,9 +105274,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository_raterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105275,9 +105285,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105285,9 +105295,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105296,9 +105306,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105306,9 +105316,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105317,9 +105327,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105327,9 +105337,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105338,9 +105348,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105348,9 +105358,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository_sessionservicerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105359,9 +105369,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105369,9 +105379,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105380,9 +105390,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105390,9 +105400,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105401,9 +105411,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105411,9 +105421,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository_smslogrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105422,9 +105432,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105432,9 +105442,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105443,9 +105453,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105453,9 +105463,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105464,9 +105474,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105474,9 +105484,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105485,9 +105495,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105495,9 +105505,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105506,9 +105516,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105516,9 +105526,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105527,9 +105537,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105537,9 +105547,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105548,9 +105558,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105558,9 +105568,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105569,9 +105579,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105579,9 +105589,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105590,9 +105600,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105600,9 +105610,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105611,9 +105621,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105621,9 +105631,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105632,9 +105642,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105642,9 +105652,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository_taxratehistoryrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105653,9 +105663,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105663,9 +105673,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105674,9 +105684,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105684,9 +105694,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105695,9 +105705,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105705,9 +105715,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105716,9 +105726,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105726,9 +105736,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105737,9 +105747,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105747,9 +105757,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105758,9 +105768,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105768,9 +105778,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "imports", @@ -105779,9 +105789,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "inherits", @@ -105789,9 +105799,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "serviceentityrepository", - "confidence_score": 1.0 + "target": "serviceentityrepository" }, { "relation": "references_constant", @@ -105810,9 +105820,9 @@ "source_location": "L14", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_construct", - "target": "src_appointment_repository_appointmentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_managerregistry" }, { "relation": "references", @@ -105821,9 +105831,9 @@ "source_location": "L19", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_findbyuuid", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "references", @@ -105832,9 +105842,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_bookatomically", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "references_constant", @@ -105883,9 +105893,9 @@ "source_location": "L148", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_remove", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "references", @@ -105894,9 +105904,9 @@ "source_location": "L132", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_save", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "references", @@ -105905,9 +105915,9 @@ "source_location": "L141", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_savewithlock", - "target": "src_appointment_repository_appointmentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_appointment" }, { "relation": "calls", @@ -105916,9 +105926,9 @@ "source_file": "src/Appointment/Repository/AppointmentRepository.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_bookatomically", - "target": "repository_appointmentrepository_appointmentrepository_isslottaken", - "confidence_score": 1.0 + "target": "repository_appointmentrepository_appointmentrepository_isslottaken" }, { "relation": "calls", @@ -105938,9 +105948,9 @@ "source_location": "L43", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_isslottaken", - "target": "src_appointment_repository_appointmentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_doctor" }, { "relation": "references", @@ -105949,9 +105959,9 @@ "source_location": "L68", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_findbydoctor", - "target": "src_appointment_repository_appointmentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_doctor" }, { "relation": "references", @@ -105960,9 +105970,9 @@ "source_location": "L84", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_hasrecentconfirmed", - "target": "src_appointment_repository_appointmentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_doctor" }, { "relation": "references", @@ -105971,9 +105981,9 @@ "source_location": "L76", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_findbyuser", - "target": "src_appointment_repository_appointmentrepository_php_user", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_user" }, { "relation": "references", @@ -105982,9 +105992,9 @@ "source_location": "L84", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_appointmentrepository_appointmentrepository_hasrecentconfirmed", - "target": "src_appointment_repository_appointmentrepository_php_user", - "confidence_score": 1.0 + "target": "src_appointment_repository_appointmentrepository_php_user" }, { "relation": "calls", @@ -106004,9 +106014,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository", - "target": "dateoverride", - "confidence_score": 1.0 + "target": "dateoverride" }, { "relation": "contains", @@ -106014,9 +106024,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository" }, { "relation": "imports", @@ -106025,9 +106035,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository", - "target": "src_appointment_repository_dateoverriderepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_dateoverriderepository_php_doctor" }, { "relation": "imports", @@ -106036,9 +106046,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository", - "target": "src_appointment_repository_dateoverriderepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_dateoverriderepository_php_managerregistry" }, { "relation": "method", @@ -106046,9 +106056,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository_construct", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository_construct" }, { "relation": "method", @@ -106056,9 +106066,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository_findbydoctor", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository_findbydoctor" }, { "relation": "method", @@ -106066,9 +106076,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository_findbyuuid" }, { "relation": "method", @@ -106076,9 +106086,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository_remove", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository_remove" }, { "relation": "method", @@ -106086,9 +106096,9 @@ "source_file": "src/Appointment/Repository/DateOverrideRepository.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository", - "target": "repository_dateoverriderepository_dateoverriderepository_save", - "confidence_score": 1.0 + "target": "repository_dateoverriderepository_dateoverriderepository_save" }, { "relation": "references_constant", @@ -106107,9 +106117,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository_construct", - "target": "src_appointment_repository_dateoverriderepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_dateoverriderepository_php_managerregistry" }, { "relation": "references", @@ -106118,9 +106128,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository_findbyuuid", - "target": "dateoverride", - "confidence_score": 1.0 + "target": "dateoverride" }, { "relation": "references", @@ -106129,9 +106139,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository_remove", - "target": "dateoverride", - "confidence_score": 1.0 + "target": "dateoverride" }, { "relation": "references", @@ -106140,9 +106150,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository_save", - "target": "dateoverride", - "confidence_score": 1.0 + "target": "dateoverride" }, { "relation": "references", @@ -106151,9 +106161,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_dateoverriderepository_dateoverriderepository_findbydoctor", - "target": "src_appointment_repository_dateoverriderepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_dateoverriderepository_php_doctor" }, { "relation": "imports", @@ -106162,9 +106172,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository", - "target": "holiday", - "confidence_score": 1.0 + "target": "holiday" }, { "relation": "contains", @@ -106172,9 +106182,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository" }, { "relation": "imports", @@ -106183,9 +106193,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository", - "target": "src_appointment_repository_holidayrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_holidayrepository_php_doctor" }, { "relation": "imports", @@ -106194,9 +106204,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository", - "target": "src_appointment_repository_holidayrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_holidayrepository_php_managerregistry" }, { "relation": "method", @@ -106204,9 +106214,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_construct", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_construct" }, { "relation": "method", @@ -106214,9 +106224,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_findactivebydoctor", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_findactivebydoctor" }, { "relation": "method", @@ -106224,9 +106234,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_findallbydoctor", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_findallbydoctor" }, { "relation": "method", @@ -106234,9 +106244,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_findbyuuid" }, { "relation": "method", @@ -106244,9 +106254,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_remove", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_remove" }, { "relation": "method", @@ -106254,9 +106264,9 @@ "source_file": "src/Appointment/Repository/HolidayRepository.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository", - "target": "repository_holidayrepository_holidayrepository_save", - "confidence_score": 1.0 + "target": "repository_holidayrepository_holidayrepository_save" }, { "relation": "references_constant", @@ -106275,9 +106285,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_construct", - "target": "src_appointment_repository_holidayrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_holidayrepository_php_managerregistry" }, { "relation": "references", @@ -106286,9 +106296,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_findbyuuid", - "target": "holiday", - "confidence_score": 1.0 + "target": "holiday" }, { "relation": "references", @@ -106297,9 +106307,9 @@ "source_location": "L54", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_remove", - "target": "holiday", - "confidence_score": 1.0 + "target": "holiday" }, { "relation": "references", @@ -106308,9 +106318,9 @@ "source_location": "L48", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_save", - "target": "holiday", - "confidence_score": 1.0 + "target": "holiday" }, { "relation": "references", @@ -106319,9 +106329,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_findallbydoctor", - "target": "src_appointment_repository_holidayrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_holidayrepository_php_doctor" }, { "relation": "references", @@ -106330,9 +106340,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_holidayrepository_holidayrepository_findactivebydoctor", - "target": "src_appointment_repository_holidayrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_holidayrepository_php_doctor" }, { "relation": "contains", @@ -106340,9 +106350,9 @@ "source_file": "src/Appointment/Repository/SlotTakenException.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_slottakenexception", - "target": "repository_slottakenexception_slottakenexception", - "confidence_score": 1.0 + "target": "repository_slottakenexception_slottakenexception" }, { "relation": "inherits", @@ -106350,9 +106360,9 @@ "source_file": "src/Appointment/Repository/SlotTakenException.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_slottakenexception_slottakenexception", - "target": "runtimeexception", - "confidence_score": 1.0 + "target": "runtimeexception" }, { "relation": "inherits", @@ -106360,9 +106370,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception_appexception", - "target": "runtimeexception", - "confidence_score": 1.0 + "target": "runtimeexception" }, { "relation": "contains", @@ -106370,9 +106380,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository" }, { "relation": "imports", @@ -106381,9 +106391,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository", - "target": "src_appointment_repository_weeklyschedulerepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_doctor" }, { "relation": "imports", @@ -106392,9 +106402,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository", - "target": "src_appointment_repository_weeklyschedulerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_managerregistry" }, { "relation": "imports", @@ -106403,9 +106413,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository", - "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule" }, { "relation": "method", @@ -106413,9 +106423,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_construct", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_construct" }, { "relation": "method", @@ -106423,9 +106433,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctor", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctor" }, { "relation": "method", @@ -106433,9 +106443,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctors", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctors" }, { "relation": "method", @@ -106443,9 +106453,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_findbyuuid" }, { "relation": "method", @@ -106453,9 +106463,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_remove", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_remove" }, { "relation": "method", @@ -106463,9 +106473,9 @@ "source_file": "src/Appointment/Repository/WeeklyScheduleRepository.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository", - "target": "repository_weeklyschedulerepository_weeklyschedulerepository_save", - "confidence_score": 1.0 + "target": "repository_weeklyschedulerepository_weeklyschedulerepository_save" }, { "relation": "references", @@ -106474,9 +106484,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_construct", - "target": "src_appointment_repository_weeklyschedulerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_managerregistry" }, { "relation": "references_constant", @@ -106495,9 +106505,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctor", - "target": "src_appointment_repository_weeklyschedulerepository_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_doctor" }, { "relation": "references", @@ -106506,9 +106516,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_findbydoctor", - "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule" }, { "relation": "references", @@ -106517,9 +106527,9 @@ "source_location": "L35", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_findbyuuid", - "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule" }, { "relation": "references", @@ -106528,9 +106538,9 @@ "source_location": "L46", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_remove", - "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule" }, { "relation": "references", @@ -106539,9 +106549,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_weeklyschedulerepository_weeklyschedulerepository_save", - "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_appointment_repository_weeklyschedulerepository_php_weeklyschedule" }, { "relation": "contains", @@ -106549,9 +106559,9 @@ "source_file": "src/Appointment/Service/AppointmentExpiryService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "service_appointmentexpiryservice", - "target": "service_appointmentexpiryservice_appointmentexpiryservice", - "confidence_score": 1.0 + "target": "service_appointmentexpiryservice_appointmentexpiryservice" }, { "relation": "method", @@ -106559,9 +106569,9 @@ "source_file": "src/Appointment/Service/AppointmentExpiryService.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "service_appointmentexpiryservice_appointmentexpiryservice", - "target": "service_appointmentexpiryservice_appointmentexpiryservice_construct", - "confidence_score": 1.0 + "target": "service_appointmentexpiryservice_appointmentexpiryservice_construct" }, { "relation": "method", @@ -106569,9 +106579,9 @@ "source_file": "src/Appointment/Service/AppointmentExpiryService.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "service_appointmentexpiryservice_appointmentexpiryservice", - "target": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale", - "confidence_score": 1.0 + "target": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale" }, { "relation": "calls", @@ -106590,9 +106600,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice" }, { "relation": "imports", @@ -106601,9 +106611,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "method", @@ -106611,9 +106621,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions" }, { "relation": "method", @@ -106621,9 +106631,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride" }, { "relation": "method", @@ -106631,9 +106641,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots" }, { "relation": "method", @@ -106641,9 +106651,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_construct", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_construct" }, { "relation": "method", @@ -106651,9 +106661,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L269", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots" }, { "relation": "method", @@ -106661,9 +106671,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_getallslotswithavailability", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_getallslotswithavailability" }, { "relation": "method", @@ -106671,9 +106681,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots" }, { "relation": "method", @@ -106681,9 +106691,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta" }, { "relation": "method", @@ -106691,9 +106701,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_hasanyavailability", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_hasanyavailability" }, { "relation": "method", @@ -106701,9 +106711,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow" }, { "relation": "method", @@ -106711,9 +106721,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime" }, { "relation": "method", @@ -106721,9 +106731,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice", - "target": "service_slotcalculatorservice_slotcalculatorservice_resolveslotlocationid", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_resolveslotlocationid" }, { "relation": "calls", @@ -106732,9 +106742,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions" }, { "relation": "calls", @@ -106743,9 +106753,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots", - "target": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots" }, { "relation": "references", @@ -106754,9 +106764,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getavailableslots", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106765,9 +106775,9 @@ "source_location": "L117", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106776,9 +106786,9 @@ "source_location": "L269", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_filterbookedslots", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106787,9 +106797,9 @@ "source_location": "L60", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getallslotswithavailability", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106798,9 +106808,9 @@ "source_location": "L106", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106809,9 +106819,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_hasanyavailability", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106820,9 +106830,9 @@ "source_location": "L87", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "references", @@ -106831,9 +106841,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_resolveslotlocationid", - "target": "src_appointment_service_slotcalculatorservice_php_doctor", - "confidence_score": 1.0 + "target": "src_appointment_service_slotcalculatorservice_php_doctor" }, { "relation": "calls", @@ -106853,9 +106863,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_resolveslotlocationid", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions" }, { "relation": "calls", @@ -106875,9 +106885,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_getallslotswithavailability", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions" }, { "relation": "calls", @@ -106886,9 +106896,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_hasanyavailability", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions" }, { "relation": "calls", @@ -106897,9 +106907,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "target": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow" }, { "relation": "calls", @@ -106908,9 +106918,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_iswithinbookingwindow", - "target": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_getbookingmeta" }, { "relation": "calls", @@ -106930,9 +106940,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride" }, { "relation": "calls", @@ -106941,9 +106951,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots" }, { "relation": "calls", @@ -106952,9 +106962,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L154", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildallsessions", - "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime" }, { "relation": "calls", @@ -106963,9 +106973,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride", - "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots" }, { "relation": "calls", @@ -106974,9 +106984,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildsessionsfromoverride", - "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime" }, { "relation": "calls", @@ -106985,9 +106995,9 @@ "source_file": "src/Appointment/Service/SlotCalculatorService.php", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "service_slotcalculatorservice_slotcalculatorservice_buildsessionslots", - "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime", - "confidence_score": 1.0 + "target": "service_slotcalculatorservice_slotcalculatorservice_parsetime" }, { "relation": "calls", @@ -107006,9 +107016,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "controller_authcontroller_authcontroller", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller" }, { "relation": "imports", @@ -107017,9 +107027,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -107028,9 +107038,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "ratelimiterfactory", - "confidence_score": 1.0 + "target": "ratelimiterfactory" }, { "relation": "imports", @@ -107039,9 +107049,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "imports", @@ -107050,9 +107060,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "imports", @@ -107061,9 +107071,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "src_auth_controller_authcontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_user" }, { "relation": "imports", @@ -107072,9 +107082,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller", - "target": "useractivecontext", - "confidence_score": 1.0 + "target": "useractivecontext" }, { "relation": "method", @@ -107082,9 +107092,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L642", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_buildavailablecontexts", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_buildavailablecontexts" }, { "relation": "method", @@ -107092,9 +107102,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L725", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_builddbkey", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_builddbkey" }, { "relation": "method", @@ -107102,9 +107112,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_construct", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_construct" }, { "relation": "method", @@ -107112,9 +107122,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L622", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_enforcelimit", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_enforcelimit" }, { "relation": "method", @@ -107122,9 +107132,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L715", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_findcontextbydbuuid", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_findcontextbydbuuid" }, { "relation": "method", @@ -107132,9 +107142,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_issuetoken", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_issuetoken" }, { "relation": "method", @@ -107142,9 +107152,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_login", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_login" }, { "relation": "method", @@ -107152,9 +107162,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L730", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_logout", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_logout" }, { "relation": "method", @@ -107162,9 +107172,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L363", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_otplogin", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_otplogin" }, { "relation": "method", @@ -107172,9 +107182,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_refreshtoken", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_refreshtoken" }, { "relation": "method", @@ -107182,9 +107192,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_register", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_register" }, { "relation": "method", @@ -107192,9 +107202,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L387", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_resetpassword", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_resetpassword" }, { "relation": "method", @@ -107202,9 +107212,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L631", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_resolveprimaryrole", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_resolveprimaryrole" }, { "relation": "method", @@ -107212,9 +107222,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_sendcode", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_sendcode" }, { "relation": "method", @@ -107222,9 +107232,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L774", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_sessiontoken", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_sessiontoken" }, { "relation": "method", @@ -107232,9 +107242,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L569", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_switchcontext", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_switchcontext" }, { "relation": "method", @@ -107242,9 +107252,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L483", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_userinfo", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_userinfo" }, { "relation": "method", @@ -107252,9 +107262,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_authcontroller_authcontroller_verifycode", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_verifycode" }, { "relation": "inherits", @@ -107262,9 +107272,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "calls", @@ -107284,9 +107294,9 @@ "source_location": "L49", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_login", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107295,9 +107305,9 @@ "source_location": "L622", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_enforcelimit", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107306,9 +107316,9 @@ "source_location": "L290", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_issuetoken", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107317,9 +107327,9 @@ "source_location": "L730", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_logout", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107328,9 +107338,9 @@ "source_location": "L363", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_otplogin", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107339,9 +107349,9 @@ "source_location": "L415", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_refreshtoken", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107350,9 +107360,9 @@ "source_location": "L213", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_register", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107361,9 +107371,9 @@ "source_location": "L387", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_resetpassword", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107372,9 +107382,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_sendcode", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107383,9 +107393,9 @@ "source_location": "L774", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_sessiontoken", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107394,9 +107404,9 @@ "source_location": "L569", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107405,9 +107415,9 @@ "source_location": "L483", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "references", @@ -107416,9 +107426,9 @@ "source_location": "L155", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_verifycode", - "target": "src_auth_controller_authcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_jsonresponse" }, { "relation": "calls", @@ -107438,9 +107448,9 @@ "source_location": "L107", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_sendcode", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107449,9 +107459,9 @@ "source_location": "L622", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_enforcelimit", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107460,9 +107470,9 @@ "source_location": "L290", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_issuetoken", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107471,9 +107481,9 @@ "source_location": "L730", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_logout", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107482,9 +107492,9 @@ "source_location": "L363", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_otplogin", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107493,9 +107503,9 @@ "source_location": "L415", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_refreshtoken", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107504,9 +107514,9 @@ "source_location": "L213", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_register", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107515,9 +107525,9 @@ "source_location": "L387", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_resetpassword", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107526,9 +107536,9 @@ "source_location": "L569", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "references", @@ -107537,9 +107547,9 @@ "source_location": "L155", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_verifycode", - "target": "src_auth_controller_authcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_request" }, { "relation": "calls", @@ -107548,9 +107558,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L191", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_verifycode", - "target": "controller_authcontroller_authcontroller_enforcelimit", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_enforcelimit" }, { "relation": "calls", @@ -107559,9 +107569,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L340", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_issuetoken", - "target": "controller_authcontroller_authcontroller_enforcelimit", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_enforcelimit" }, { "relation": "calls", @@ -107570,9 +107580,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L366", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_otplogin", - "target": "controller_authcontroller_authcontroller_enforcelimit", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_enforcelimit" }, { "relation": "calls", @@ -107581,9 +107591,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L390", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_resetpassword", - "target": "controller_authcontroller_authcontroller_enforcelimit", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_enforcelimit" }, { "relation": "calls", @@ -107614,9 +107624,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L540", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "controller_authcontroller_authcontroller_buildavailablecontexts", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_buildavailablecontexts" }, { "relation": "calls", @@ -107625,9 +107635,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L549", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "controller_authcontroller_authcontroller_builddbkey", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_builddbkey" }, { "relation": "calls", @@ -107636,9 +107646,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L550", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "controller_authcontroller_authcontroller_findcontextbydbuuid", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_findcontextbydbuuid" }, { "relation": "calls", @@ -107647,9 +107657,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L539", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "controller_authcontroller_authcontroller_resolveprimaryrole", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_resolveprimaryrole" }, { "relation": "references", @@ -107658,9 +107668,9 @@ "source_location": "L483", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_userinfo", - "target": "src_auth_controller_authcontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_user" }, { "relation": "references", @@ -107669,9 +107679,9 @@ "source_location": "L642", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_buildavailablecontexts", - "target": "src_auth_controller_authcontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_user" }, { "relation": "references", @@ -107680,9 +107690,9 @@ "source_location": "L631", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_resolveprimaryrole", - "target": "src_auth_controller_authcontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_user" }, { "relation": "references", @@ -107691,9 +107701,9 @@ "source_location": "L569", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "src_auth_controller_authcontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_authcontroller_php_user" }, { "relation": "calls", @@ -107713,9 +107723,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L604", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "controller_authcontroller_authcontroller_buildavailablecontexts", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_buildavailablecontexts" }, { "relation": "calls", @@ -107724,9 +107734,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L615", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "controller_authcontroller_authcontroller_builddbkey", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_builddbkey" }, { "relation": "calls", @@ -107735,9 +107745,9 @@ "source_file": "src/Auth/Controller/AuthController.php", "source_location": "L605", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_switchcontext", - "target": "controller_authcontroller_authcontroller_findcontextbydbuuid", - "confidence_score": 1.0 + "target": "controller_authcontroller_authcontroller_findcontextbydbuuid" }, { "relation": "calls", @@ -107757,9 +107767,9 @@ "source_location": "L622", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_authcontroller_authcontroller_enforcelimit", - "target": "ratelimiterfactory", - "confidence_score": 1.0 + "target": "ratelimiterfactory" }, { "relation": "imports", @@ -107768,9 +107778,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "ratelimiterfactory", - "confidence_score": 1.0 + "target": "ratelimiterfactory" }, { "relation": "imports", @@ -107779,9 +107789,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -107789,9 +107799,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller" }, { "relation": "imports", @@ -107800,9 +107810,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller", - "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse" }, { "relation": "imports", @@ -107811,9 +107821,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller", - "target": "src_auth_controller_notificationmobilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_request" }, { "relation": "imports", @@ -107822,9 +107832,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "inherits", @@ -107832,9 +107842,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -107842,9 +107852,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_construct", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_construct" }, { "relation": "method", @@ -107852,9 +107862,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_getcurrent", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_getcurrent" }, { "relation": "method", @@ -107862,9 +107872,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_remove", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_remove" }, { "relation": "method", @@ -107872,9 +107882,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp" }, { "relation": "method", @@ -107882,9 +107892,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity" }, { "relation": "method", @@ -107892,9 +107902,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_verify", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_verify" }, { "relation": "calls", @@ -107903,9 +107913,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity" }, { "relation": "references", @@ -107914,9 +107924,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp", - "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse" }, { "relation": "references", @@ -107925,9 +107935,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp", - "target": "src_auth_controller_notificationmobilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_request" }, { "relation": "references", @@ -107936,9 +107946,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_requestotp", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "references", @@ -107947,9 +107957,9 @@ "source_location": "L81", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_verify", - "target": "src_auth_controller_notificationmobilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_request" }, { "relation": "references", @@ -107958,9 +107968,9 @@ "source_location": "L129", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_getcurrent", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "references", @@ -107969,9 +107979,9 @@ "source_location": "L144", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_remove", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "references", @@ -107980,9 +107990,9 @@ "source_location": "L160", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "references", @@ -107991,9 +108001,9 @@ "source_location": "L81", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_verify", - "target": "src_auth_controller_notificationmobilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_user" }, { "relation": "references", @@ -108002,9 +108012,9 @@ "source_location": "L129", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_getcurrent", - "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse" }, { "relation": "references", @@ -108013,9 +108023,9 @@ "source_location": "L144", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_remove", - "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse" }, { "relation": "references", @@ -108024,9 +108034,9 @@ "source_location": "L81", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_verify", - "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_notificationmobilecontroller_php_jsonresponse" }, { "relation": "calls", @@ -108035,9 +108045,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_verify", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity" }, { "relation": "calls", @@ -108046,9 +108056,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_getcurrent", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity" }, { "relation": "calls", @@ -108057,9 +108067,9 @@ "source_file": "src/Auth/Controller/NotificationMobileController.php", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_notificationmobilecontroller_notificationmobilecontroller_remove", - "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_notificationmobilecontroller_notificationmobilecontroller_resolveentity" }, { "relation": "imports", @@ -108068,9 +108078,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -108078,9 +108088,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller" }, { "relation": "imports", @@ -108089,9 +108099,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller", - "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse" }, { "relation": "imports", @@ -108100,9 +108110,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller", - "target": "src_auth_controller_preregistrationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_request" }, { "relation": "inherits", @@ -108110,9 +108120,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -108120,9 +108130,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller_approve", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller_approve" }, { "relation": "method", @@ -108130,9 +108140,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller_construct", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller_construct" }, { "relation": "method", @@ -108140,9 +108150,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller_list", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller_list" }, { "relation": "method", @@ -108150,9 +108160,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller_reject", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller_reject" }, { "relation": "method", @@ -108160,9 +108170,9 @@ "source_file": "src/Auth/Controller/PreRegistrationController.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller", - "target": "controller_preregistrationcontroller_preregistrationcontroller_submit", - "confidence_score": 1.0 + "target": "controller_preregistrationcontroller_preregistrationcontroller_submit" }, { "relation": "references", @@ -108171,9 +108181,9 @@ "source_location": "L40", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_submit", - "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse" }, { "relation": "references", @@ -108182,9 +108192,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_submit", - "target": "src_auth_controller_preregistrationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_request" }, { "relation": "references", @@ -108193,9 +108203,9 @@ "source_location": "L76", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_list", - "target": "src_auth_controller_preregistrationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_request" }, { "relation": "references", @@ -108204,9 +108214,9 @@ "source_location": "L175", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_reject", - "target": "src_auth_controller_preregistrationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_request" }, { "relation": "references", @@ -108215,9 +108225,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_approve", - "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse" }, { "relation": "references", @@ -108226,9 +108236,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_list", - "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse" }, { "relation": "references", @@ -108237,9 +108247,9 @@ "source_location": "L175", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_preregistrationcontroller_preregistrationcontroller_reject", - "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_auth_controller_preregistrationcontroller_php_jsonresponse" }, { "relation": "contains", @@ -108247,9 +108257,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp" }, { "relation": "method", @@ -108257,9 +108267,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_construct", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_construct" }, { "relation": "method", @@ -108267,9 +108277,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_getentityid", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_getentityid" }, { "relation": "method", @@ -108277,9 +108287,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_getentitytype", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_getentitytype" }, { "relation": "method", @@ -108287,9 +108297,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_getid", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_getid" }, { "relation": "method", @@ -108297,9 +108307,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_getnewmobile", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_getnewmobile" }, { "relation": "method", @@ -108307,9 +108317,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_getotpcode", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_getotpcode" }, { "relation": "method", @@ -108317,9 +108327,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_isexpired", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_isexpired" }, { "relation": "method", @@ -108327,9 +108337,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_isused", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_isused" }, { "relation": "method", @@ -108337,9 +108347,9 @@ "source_file": "src/Auth/Entity/MobileVerificationOtp.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_mobileverificationotp_mobileverificationotp", - "target": "entity_mobileverificationotp_mobileverificationotp_markused", - "confidence_score": 1.0 + "target": "entity_mobileverificationotp_mobileverificationotp_markused" }, { "relation": "calls", @@ -108369,9 +108379,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration", - "target": "entity_preregistration_preregistration", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration" }, { "relation": "method", @@ -108379,9 +108389,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_approve", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_approve" }, { "relation": "method", @@ -108389,9 +108399,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_construct", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_construct" }, { "relation": "method", @@ -108399,9 +108409,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getadminnote", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getadminnote" }, { "relation": "method", @@ -108409,9 +108419,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getcreatedat", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getcreatedat" }, { "relation": "method", @@ -108419,9 +108429,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getid", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getid" }, { "relation": "method", @@ -108429,9 +108439,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getinfo", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getinfo" }, { "relation": "method", @@ -108439,9 +108449,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getmobile", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getmobile" }, { "relation": "method", @@ -108449,9 +108459,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getname", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getname" }, { "relation": "method", @@ -108459,9 +108469,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getstatus", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getstatus" }, { "relation": "method", @@ -108469,9 +108479,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_gettype", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_gettype" }, { "relation": "method", @@ -108479,9 +108489,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getupdatedat", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getupdatedat" }, { "relation": "method", @@ -108489,9 +108499,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_getuuid", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_getuuid" }, { "relation": "method", @@ -108499,9 +108509,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_ispending", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_ispending" }, { "relation": "method", @@ -108509,9 +108519,9 @@ "source_file": "src/Auth/Entity/PreRegistration.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_preregistration_preregistration", - "target": "entity_preregistration_preregistration_reject", - "confidence_score": 1.0 + "target": "entity_preregistration_preregistration_reject" }, { "relation": "calls", @@ -108552,9 +108562,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user", - "target": "entity_user_user", - "confidence_score": 1.0 + "target": "entity_user_user" }, { "relation": "imports", @@ -108563,9 +108573,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user", - "target": "passwordauthenticateduserinterface", - "confidence_score": 1.0 + "target": "passwordauthenticateduserinterface" }, { "relation": "imports", @@ -108574,9 +108584,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user", - "target": "userinterface", - "confidence_score": 1.0 + "target": "userinterface" }, { "relation": "method", @@ -108584,9 +108594,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_addrole", - "confidence_score": 1.0 + "target": "entity_user_user_addrole" }, { "relation": "method", @@ -108594,9 +108604,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_construct", - "confidence_score": 1.0 + "target": "entity_user_user_construct" }, { "relation": "method", @@ -108604,9 +108614,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_erasecredentials", - "confidence_score": 1.0 + "target": "entity_user_user_erasecredentials" }, { "relation": "method", @@ -108614,9 +108624,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getcreatedat", - "confidence_score": 1.0 + "target": "entity_user_user_getcreatedat" }, { "relation": "method", @@ -108624,9 +108634,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getemail", - "confidence_score": 1.0 + "target": "entity_user_user_getemail" }, { "relation": "method", @@ -108634,9 +108644,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getid", - "confidence_score": 1.0 + "target": "entity_user_user_getid" }, { "relation": "method", @@ -108644,9 +108654,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getmobilenumber", - "confidence_score": 1.0 + "target": "entity_user_user_getmobilenumber" }, { "relation": "method", @@ -108654,9 +108664,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getnationalcode", - "confidence_score": 1.0 + "target": "entity_user_user_getnationalcode" }, { "relation": "method", @@ -108664,9 +108674,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getpassword", - "confidence_score": 1.0 + "target": "entity_user_user_getpassword" }, { "relation": "method", @@ -108674,9 +108684,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getpasswordhash", - "confidence_score": 1.0 + "target": "entity_user_user_getpasswordhash" }, { "relation": "method", @@ -108684,9 +108694,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getrealname", - "confidence_score": 1.0 + "target": "entity_user_user_getrealname" }, { "relation": "method", @@ -108694,9 +108704,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getroles", - "confidence_score": 1.0 + "target": "entity_user_user_getroles" }, { "relation": "method", @@ -108704,9 +108714,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getstatus", - "confidence_score": 1.0 + "target": "entity_user_user_getstatus" }, { "relation": "method", @@ -108714,9 +108724,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getuseridentifier", - "confidence_score": 1.0 + "target": "entity_user_user_getuseridentifier" }, { "relation": "method", @@ -108724,9 +108734,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_getuuid", - "confidence_score": 1.0 + "target": "entity_user_user_getuuid" }, { "relation": "method", @@ -108734,9 +108744,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_hasrole", - "confidence_score": 1.0 + "target": "entity_user_user_hasrole" }, { "relation": "method", @@ -108744,9 +108754,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_isnationalcodeverified", - "confidence_score": 1.0 + "target": "entity_user_user_isnationalcodeverified" }, { "relation": "method", @@ -108754,9 +108764,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_isstaff", - "confidence_score": 1.0 + "target": "entity_user_user_isstaff" }, { "relation": "method", @@ -108764,9 +108774,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setemail", - "confidence_score": 1.0 + "target": "entity_user_user_setemail" }, { "relation": "method", @@ -108774,9 +108784,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setnationalcode", - "confidence_score": 1.0 + "target": "entity_user_user_setnationalcode" }, { "relation": "method", @@ -108784,9 +108794,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setnationalcodeverified", - "confidence_score": 1.0 + "target": "entity_user_user_setnationalcodeverified" }, { "relation": "method", @@ -108794,9 +108804,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setpasswordhash", - "confidence_score": 1.0 + "target": "entity_user_user_setpasswordhash" }, { "relation": "method", @@ -108804,9 +108814,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setrealname", - "confidence_score": 1.0 + "target": "entity_user_user_setrealname" }, { "relation": "method", @@ -108814,9 +108824,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setroles", - "confidence_score": 1.0 + "target": "entity_user_user_setroles" }, { "relation": "method", @@ -108824,9 +108834,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "entity_user_user_setstatus", - "confidence_score": 1.0 + "target": "entity_user_user_setstatus" }, { "relation": "implements", @@ -108834,9 +108844,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "passwordauthenticateduserinterface", - "confidence_score": 1.0 + "target": "passwordauthenticateduserinterface" }, { "relation": "implements", @@ -108844,9 +108854,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user", - "target": "userinterface", - "confidence_score": 1.0 + "target": "userinterface" }, { "relation": "calls", @@ -108866,9 +108876,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user_hasrole", - "target": "entity_user_user_getroles", - "confidence_score": 1.0 + "target": "entity_user_user_getroles" }, { "relation": "references", @@ -108877,9 +108887,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setemail", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108888,9 +108898,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_addrole", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108899,9 +108909,9 @@ "source_location": "L88", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setnationalcode", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108910,9 +108920,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setnationalcodeverified", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108921,9 +108931,9 @@ "source_location": "L99", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setpasswordhash", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108932,9 +108942,9 @@ "source_location": "L87", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setrealname", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108943,9 +108953,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setroles", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "references", @@ -108954,9 +108964,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_user_user_setstatus", - "target": "src_auth_entity_user_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_user_php_self" }, { "relation": "calls", @@ -109042,9 +109052,9 @@ "source_file": "src/Auth/Entity/User.php", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_user_user_isstaff", - "target": "entity_user_user_hasrole", - "confidence_score": 1.0 + "target": "entity_user_user_hasrole" }, { "relation": "contains", @@ -109052,9 +109062,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext", - "target": "entity_useractivecontext_useractivecontext", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext" }, { "relation": "method", @@ -109062,9 +109072,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "entity_useractivecontext_useractivecontext_construct", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext_construct" }, { "relation": "method", @@ -109072,9 +109082,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "entity_useractivecontext_useractivecontext_getdbuuid", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext_getdbuuid" }, { "relation": "method", @@ -109082,9 +109092,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "entity_useractivecontext_useractivecontext_getupdatedat", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext_getupdatedat" }, { "relation": "method", @@ -109092,9 +109102,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "entity_useractivecontext_useractivecontext_getuser", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext_getuser" }, { "relation": "method", @@ -109102,9 +109112,9 @@ "source_file": "src/Auth/Entity/UserActiveContext.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "entity_useractivecontext_useractivecontext_setdbuuid", - "confidence_score": 1.0 + "target": "entity_useractivecontext_useractivecontext_setdbuuid" }, { "relation": "references", @@ -109113,9 +109123,9 @@ "source_location": "L11", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext", - "target": "src_auth_entity_useractivecontext_php_user", - "confidence_score": 1.0 + "target": "src_auth_entity_useractivecontext_php_user" }, { "relation": "references", @@ -109124,9 +109134,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext_construct", - "target": "src_auth_entity_useractivecontext_php_user", - "confidence_score": 1.0 + "target": "src_auth_entity_useractivecontext_php_user" }, { "relation": "references", @@ -109135,9 +109145,9 @@ "source_location": "L29", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext_getuser", - "target": "src_auth_entity_useractivecontext_php_user", - "confidence_score": 1.0 + "target": "src_auth_entity_useractivecontext_php_user" }, { "relation": "calls", @@ -109168,9 +109178,9 @@ "source_location": "L33", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_useractivecontext_useractivecontext_setdbuuid", - "target": "src_auth_entity_useractivecontext_php_self", - "confidence_score": 1.0 + "target": "src_auth_entity_useractivecontext_php_self" }, { "relation": "contains", @@ -109178,9 +109188,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository", - "target": "repository_preregistrationrepository_preregistrationrepository", - "confidence_score": 1.0 + "target": "repository_preregistrationrepository_preregistrationrepository" }, { "relation": "imports", @@ -109189,9 +109199,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository", - "target": "src_auth_repository_preregistrationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_preregistrationrepository_php_managerregistry" }, { "relation": "method", @@ -109199,9 +109209,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository_preregistrationrepository", - "target": "repository_preregistrationrepository_preregistrationrepository_construct", - "confidence_score": 1.0 + "target": "repository_preregistrationrepository_preregistrationrepository_construct" }, { "relation": "method", @@ -109209,9 +109219,9 @@ "source_file": "src/Auth/Repository/PreRegistrationRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_preregistrationrepository_preregistrationrepository", - "target": "repository_preregistrationrepository_preregistrationrepository_haspendingformobile", - "confidence_score": 1.0 + "target": "repository_preregistrationrepository_preregistrationrepository_haspendingformobile" }, { "relation": "references", @@ -109220,9 +109230,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_preregistrationrepository_preregistrationrepository_construct", - "target": "src_auth_repository_preregistrationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_preregistrationrepository_php_managerregistry" }, { "relation": "contains", @@ -109230,9 +109240,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository", - "target": "repository_useractivecontextrepository_useractivecontextrepository", - "confidence_score": 1.0 + "target": "repository_useractivecontextrepository_useractivecontextrepository" }, { "relation": "imports", @@ -109241,9 +109251,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository", - "target": "src_auth_repository_useractivecontextrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_useractivecontextrepository_php_managerregistry" }, { "relation": "imports", @@ -109252,9 +109262,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository", - "target": "src_auth_repository_useractivecontextrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_useractivecontextrepository_php_user" }, { "relation": "imports", @@ -109263,9 +109273,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository", - "target": "useractivecontext", - "confidence_score": 1.0 + "target": "useractivecontext" }, { "relation": "method", @@ -109273,9 +109283,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository", - "target": "repository_useractivecontextrepository_useractivecontextrepository_construct", - "confidence_score": 1.0 + "target": "repository_useractivecontextrepository_useractivecontextrepository_construct" }, { "relation": "method", @@ -109283,9 +109293,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository", - "target": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser" }, { "relation": "method", @@ -109293,9 +109303,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository", - "target": "repository_useractivecontextrepository_useractivecontextrepository_upsert", - "confidence_score": 1.0 + "target": "repository_useractivecontextrepository_useractivecontextrepository_upsert" }, { "relation": "references", @@ -109304,9 +109314,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_construct", - "target": "src_auth_repository_useractivecontextrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_useractivecontextrepository_php_managerregistry" }, { "relation": "references_constant", @@ -109325,9 +109335,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser", - "target": "src_auth_repository_useractivecontextrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_useractivecontextrepository_php_user" }, { "relation": "references", @@ -109336,9 +109346,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser", - "target": "useractivecontext", - "confidence_score": 1.0 + "target": "useractivecontext" }, { "relation": "calls", @@ -109347,9 +109357,9 @@ "source_file": "src/Auth/Repository/UserActiveContextRepository.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_upsert", - "target": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_useractivecontextrepository_useractivecontextrepository_findbyuser" }, { "relation": "references", @@ -109358,9 +109368,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_upsert", - "target": "src_auth_repository_useractivecontextrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_useractivecontextrepository_php_user" }, { "relation": "references", @@ -109369,9 +109379,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_useractivecontextrepository_useractivecontextrepository_upsert", - "target": "useractivecontext", - "confidence_score": 1.0 + "target": "useractivecontext" }, { "relation": "contains", @@ -109379,9 +109389,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository", - "target": "repository_userrepository_userrepository", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository" }, { "relation": "imports", @@ -109390,9 +109400,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository", - "target": "src_auth_repository_userrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_managerregistry" }, { "relation": "imports", @@ -109401,9 +109411,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository", - "target": "src_auth_repository_userrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_user" }, { "relation": "method", @@ -109411,9 +109421,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "repository_userrepository_userrepository_construct", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository_construct" }, { "relation": "method", @@ -109421,9 +109431,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "repository_userrepository_userrepository_findbymobile", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository_findbymobile" }, { "relation": "method", @@ -109431,9 +109441,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "repository_userrepository_userrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository_findbyuuid" }, { "relation": "method", @@ -109441,9 +109451,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "repository_userrepository_userrepository_remove", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository_remove" }, { "relation": "method", @@ -109451,9 +109461,9 @@ "source_file": "src/Auth/Repository/UserRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userrepository_userrepository", - "target": "repository_userrepository_userrepository_save", - "confidence_score": 1.0 + "target": "repository_userrepository_userrepository_save" }, { "relation": "references", @@ -109462,9 +109472,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userrepository_userrepository_construct", - "target": "src_auth_repository_userrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_managerregistry" }, { "relation": "references_constant", @@ -109483,9 +109493,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_userrepository_userrepository_findbymobile", - "target": "src_auth_repository_userrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_user" }, { "relation": "references", @@ -109494,9 +109504,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_userrepository_userrepository_findbyuuid", - "target": "src_auth_repository_userrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_user" }, { "relation": "references", @@ -109505,9 +109515,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userrepository_userrepository_remove", - "target": "src_auth_repository_userrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_user" }, { "relation": "references", @@ -109516,9 +109526,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userrepository_userrepository_save", - "target": "src_auth_repository_userrepository_php_user", - "confidence_score": 1.0 + "target": "src_auth_repository_userrepository_php_user" }, { "relation": "imports", @@ -109527,9 +109537,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "abstractauthenticator", - "confidence_score": 1.0 + "target": "abstractauthenticator" }, { "relation": "imports", @@ -109538,9 +109548,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "authenticationexception", - "confidence_score": 1.0 + "target": "authenticationexception" }, { "relation": "imports", @@ -109549,9 +109559,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "passport", - "confidence_score": 1.0 + "target": "passport" }, { "relation": "contains", @@ -109559,9 +109569,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator" }, { "relation": "imports", @@ -109570,9 +109580,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "src_auth_security_passwordauthenticator_php_request", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_request" }, { "relation": "imports", @@ -109581,9 +109591,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "src_auth_security_passwordauthenticator_php_response", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_response" }, { "relation": "imports", @@ -109592,9 +109602,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator", - "target": "tokeninterface", - "confidence_score": 1.0 + "target": "tokeninterface" }, { "relation": "inherits", @@ -109602,9 +109612,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "abstractauthenticator", - "confidence_score": 1.0 + "target": "abstractauthenticator" }, { "relation": "method", @@ -109612,9 +109622,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator_authenticate", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator_authenticate" }, { "relation": "method", @@ -109622,9 +109632,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator_construct", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator_construct" }, { "relation": "method", @@ -109632,9 +109642,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure" }, { "relation": "method", @@ -109642,9 +109652,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess" }, { "relation": "method", @@ -109652,9 +109662,9 @@ "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator", - "target": "security_passwordauthenticator_passwordauthenticator_supports", - "confidence_score": 1.0 + "target": "security_passwordauthenticator_passwordauthenticator_supports" }, { "relation": "references", @@ -109663,9 +109673,9 @@ "source_location": "L33", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_supports", - "target": "src_auth_security_passwordauthenticator_php_request", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_request" }, { "relation": "references", @@ -109674,9 +109684,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_authenticate", - "target": "src_auth_security_passwordauthenticator_php_request", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_request" }, { "relation": "references", @@ -109685,9 +109695,9 @@ "source_location": "L92", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", - "target": "src_auth_security_passwordauthenticator_php_request", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_request" }, { "relation": "references", @@ -109696,9 +109706,9 @@ "source_location": "L56", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", - "target": "src_auth_security_passwordauthenticator_php_request", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_request" }, { "relation": "references", @@ -109707,9 +109717,9 @@ "source_location": "L39", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_authenticate", - "target": "passport", - "confidence_score": 1.0 + "target": "passport" }, { "relation": "calls", @@ -109729,9 +109739,9 @@ "source_location": "L56", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", - "target": "src_auth_security_passwordauthenticator_php_response", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_response" }, { "relation": "references", @@ -109740,9 +109750,9 @@ "source_location": "L56", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", - "target": "tokeninterface", - "confidence_score": 1.0 + "target": "tokeninterface" }, { "relation": "references", @@ -109751,9 +109761,9 @@ "source_location": "L92", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", - "target": "src_auth_security_passwordauthenticator_php_response", - "confidence_score": 1.0 + "target": "src_auth_security_passwordauthenticator_php_response" }, { "relation": "references", @@ -109762,9 +109772,9 @@ "source_location": "L92", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", - "target": "authenticationexception", - "confidence_score": 1.0 + "target": "authenticationexception" }, { "relation": "calls", @@ -109784,9 +109794,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber", - "target": "authenticationexception", - "confidence_score": 1.0 + "target": "authenticationexception" }, { "relation": "contains", @@ -109794,9 +109804,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice", - "target": "service_otpservice_otpservice", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice" }, { "relation": "imports", @@ -109805,9 +109815,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice", - "target": "smslog", - "confidence_score": 1.0 + "target": "smslog" }, { "relation": "method", @@ -109815,9 +109825,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_construct", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_construct" }, { "relation": "method", @@ -109825,9 +109835,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_consumegrant", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_consumegrant" }, { "relation": "method", @@ -109835,9 +109845,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_grantkey", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_grantkey" }, { "relation": "method", @@ -109845,9 +109855,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_issuegrant", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_issuegrant" }, { "relation": "method", @@ -109855,9 +109865,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_key", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_key" }, { "relation": "method", @@ -109865,9 +109875,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_sendcode", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_sendcode" }, { "relation": "method", @@ -109875,9 +109885,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice", - "target": "service_otpservice_otpservice_verifycode", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_verifycode" }, { "relation": "calls", @@ -109886,9 +109896,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice_sendcode", - "target": "service_otpservice_otpservice_key", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_key" }, { "relation": "calls", @@ -109897,9 +109907,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice_verifycode", - "target": "service_otpservice_otpservice_key", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_key" }, { "relation": "calls", @@ -109908,9 +109918,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice_consumegrant", - "target": "service_otpservice_otpservice_grantkey", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_grantkey" }, { "relation": "calls", @@ -109919,9 +109929,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice_issuegrant", - "target": "service_otpservice_otpservice_grantkey", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_grantkey" }, { "relation": "calls", @@ -109930,9 +109940,9 @@ "source_file": "src/Auth/Service/OtpService.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "service_otpservice_otpservice_verifycode", - "target": "service_otpservice_otpservice_issuegrant", - "confidence_score": 1.0 + "target": "service_otpservice_otpservice_issuegrant" }, { "relation": "contains", @@ -109940,9 +109950,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice", - "target": "service_tokenservice_tokenservice", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice" }, { "relation": "imports", @@ -109951,9 +109961,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice", - "target": "src_auth_service_tokenservice_php_user", - "confidence_score": 1.0 + "target": "src_auth_service_tokenservice_php_user" }, { "relation": "method", @@ -109961,9 +109971,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_construct", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_construct" }, { "relation": "method", @@ -109971,9 +109981,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_issuetokens", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_issuetokens" }, { "relation": "method", @@ -109981,9 +109991,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_refreshkey", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_refreshkey" }, { "relation": "method", @@ -109991,9 +110001,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_refreshtoken", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_refreshtoken" }, { "relation": "method", @@ -110001,9 +110011,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_revokerefreshtoken", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_revokerefreshtoken" }, { "relation": "method", @@ -110011,9 +110021,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice", - "target": "service_tokenservice_tokenservice_storerefreshtoken", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_storerefreshtoken" }, { "relation": "calls", @@ -110022,9 +110032,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice_issuetokens", - "target": "service_tokenservice_tokenservice_storerefreshtoken", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_storerefreshtoken" }, { "relation": "references", @@ -110033,9 +110043,9 @@ "source_location": "L19", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice_issuetokens", - "target": "src_auth_service_tokenservice_php_user", - "confidence_score": 1.0 + "target": "src_auth_service_tokenservice_php_user" }, { "relation": "calls", @@ -110044,9 +110054,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice_refreshtoken", - "target": "service_tokenservice_tokenservice_refreshkey", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_refreshkey" }, { "relation": "calls", @@ -110055,9 +110065,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice_revokerefreshtoken", - "target": "service_tokenservice_tokenservice_refreshkey", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_refreshkey" }, { "relation": "calls", @@ -110066,9 +110076,9 @@ "source_file": "src/Auth/Service/TokenService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tokenservice_tokenservice_storerefreshtoken", - "target": "service_tokenservice_tokenservice_refreshkey", - "confidence_score": 1.0 + "target": "service_tokenservice_tokenservice_refreshkey" }, { "relation": "contains", @@ -110076,9 +110086,9 @@ "source_file": "src/Billing/Contract/ClaimSubmissionResult.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmissionresult", - "target": "contract_claimsubmissionresult_claimsubmissionresult", - "confidence_score": 1.0 + "target": "contract_claimsubmissionresult_claimsubmissionresult" }, { "relation": "method", @@ -110086,9 +110096,9 @@ "source_file": "src/Billing/Contract/ClaimSubmissionResult.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmissionresult_claimsubmissionresult", - "target": "contract_claimsubmissionresult_claimsubmissionresult_construct", - "confidence_score": 1.0 + "target": "contract_claimsubmissionresult_claimsubmissionresult_construct" }, { "relation": "method", @@ -110096,9 +110106,9 @@ "source_file": "src/Billing/Contract/ClaimSubmissionResult.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmissionresult_claimsubmissionresult", - "target": "contract_claimsubmissionresult_claimsubmissionresult_fail", - "confidence_score": 1.0 + "target": "contract_claimsubmissionresult_claimsubmissionresult_fail" }, { "relation": "method", @@ -110106,9 +110116,9 @@ "source_file": "src/Billing/Contract/ClaimSubmissionResult.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmissionresult_claimsubmissionresult", - "target": "contract_claimsubmissionresult_claimsubmissionresult_ok", - "confidence_score": 1.0 + "target": "contract_claimsubmissionresult_claimsubmissionresult_ok" }, { "relation": "references", @@ -110117,9 +110127,9 @@ "source_location": "L13", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "contract_claimsubmissionresult_claimsubmissionresult_ok", - "target": "src_billing_contract_claimsubmissionresult_php_self", - "confidence_score": 1.0 + "target": "src_billing_contract_claimsubmissionresult_php_self" }, { "relation": "references", @@ -110128,9 +110138,9 @@ "source_location": "L18", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "contract_claimsubmissionresult_claimsubmissionresult_fail", - "target": "src_billing_contract_claimsubmissionresult_php_self", - "confidence_score": 1.0 + "target": "src_billing_contract_claimsubmissionresult_php_self" }, { "relation": "contains", @@ -110138,9 +110148,9 @@ "source_file": "src/Billing/Contract/ClaimSubmitterInterface.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmitterinterface", - "target": "contract_claimsubmitterinterface_submit", - "confidence_score": 1.0 + "target": "contract_claimsubmitterinterface_submit" }, { "relation": "imports", @@ -110149,9 +110159,9 @@ "source_file": "src/Billing/Contract/ClaimSubmitterInterface.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "contract_claimsubmitterinterface", - "target": "src_billing_contract_claimsubmitterinterface_php_claim", - "confidence_score": 1.0 + "target": "src_billing_contract_claimsubmitterinterface_php_claim" }, { "relation": "references", @@ -110160,9 +110170,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "contract_claimsubmitterinterface_submit", - "target": "src_billing_contract_claimsubmitterinterface_php_claim", - "confidence_score": 1.0 + "target": "src_billing_contract_claimsubmitterinterface_php_claim" }, { "relation": "references", @@ -110171,9 +110181,9 @@ "source_location": "L13", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "contract_claimsubmitterinterface_submit", - "target": "src_billing_contract_claimsubmitterinterface_php_claimsubmissionresult", - "confidence_score": 1.0 + "target": "src_billing_contract_claimsubmitterinterface_php_claimsubmissionresult" }, { "relation": "imports", @@ -110182,9 +110192,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -110192,9 +110202,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller" }, { "relation": "imports", @@ -110203,9 +110213,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "imports", @@ -110214,9 +110224,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller", - "target": "src_billing_controller_billingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_request" }, { "relation": "imports", @@ -110225,9 +110235,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "inherits", @@ -110235,9 +110245,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -110245,9 +110255,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_construct", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_construct" }, { "relation": "method", @@ -110255,9 +110265,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_create", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_create" }, { "relation": "method", @@ -110265,9 +110275,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_createclaim", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_createclaim" }, { "relation": "method", @@ -110275,9 +110285,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_enrichclaims", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_enrichclaims" }, { "relation": "method", @@ -110285,9 +110295,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_finalize", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_finalize" }, { "relation": "method", @@ -110295,9 +110305,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_insurancedebt", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_insurancedebt" }, { "relation": "method", @@ -110305,9 +110315,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_listclaims", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_listclaims" }, { "relation": "method", @@ -110315,9 +110325,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L238", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_ownssession", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_ownssession" }, { "relation": "method", @@ -110325,9 +110335,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L244", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "method", @@ -110335,9 +110345,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_show", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_show" }, { "relation": "method", @@ -110345,9 +110355,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller", - "target": "controller_billingcontroller_billingcontroller_transitionclaim", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_transitionclaim" }, { "relation": "calls", @@ -110356,9 +110366,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_createclaim", - "target": "controller_billingcontroller_billingcontroller_enrichclaims", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_enrichclaims" }, { "relation": "calls", @@ -110367,9 +110377,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_listclaims", - "target": "controller_billingcontroller_billingcontroller_enrichclaims", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_enrichclaims" }, { "relation": "calls", @@ -110378,9 +110388,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_transitionclaim", - "target": "controller_billingcontroller_billingcontroller_enrichclaims", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_enrichclaims" }, { "relation": "calls", @@ -110389,9 +110399,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_create", - "target": "controller_billingcontroller_billingcontroller_ownssession", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_ownssession" }, { "relation": "calls", @@ -110400,9 +110410,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_create", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "references", @@ -110411,9 +110421,9 @@ "source_location": "L96", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_create", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110422,9 +110432,9 @@ "source_location": "L96", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_create", - "target": "src_billing_controller_billingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_request" }, { "relation": "references", @@ -110433,9 +110443,9 @@ "source_location": "L96", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_create", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110444,9 +110454,9 @@ "source_location": "L148", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_createclaim", - "target": "src_billing_controller_billingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_request" }, { "relation": "references", @@ -110455,9 +110465,9 @@ "source_location": "L172", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_listclaims", - "target": "src_billing_controller_billingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_request" }, { "relation": "references", @@ -110466,9 +110476,9 @@ "source_location": "L192", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_transitionclaim", - "target": "src_billing_controller_billingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_request" }, { "relation": "references", @@ -110477,9 +110487,9 @@ "source_location": "L148", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_createclaim", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110488,9 +110498,9 @@ "source_location": "L132", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_finalize", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110499,9 +110509,9 @@ "source_location": "L222", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_insurancedebt", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110510,9 +110520,9 @@ "source_location": "L172", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_listclaims", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110521,9 +110531,9 @@ "source_location": "L244", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_resolveentity", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110532,9 +110542,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_show", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110543,9 +110553,9 @@ "source_location": "L192", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_transitionclaim", - "target": "src_billing_controller_billingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_user" }, { "relation": "references", @@ -110554,9 +110564,9 @@ "source_location": "L148", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_createclaim", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110565,9 +110575,9 @@ "source_location": "L132", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_finalize", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110576,9 +110586,9 @@ "source_location": "L222", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_insurancedebt", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110587,9 +110597,9 @@ "source_location": "L172", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_listclaims", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110598,9 +110608,9 @@ "source_location": "L120", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_show", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "references", @@ -110609,9 +110619,9 @@ "source_location": "L192", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_transitionclaim", - "target": "src_billing_controller_billingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_billing_controller_billingcontroller_php_jsonresponse" }, { "relation": "calls", @@ -110620,9 +110630,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_show", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "calls", @@ -110631,9 +110641,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_finalize", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "calls", @@ -110642,9 +110652,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_createclaim", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "calls", @@ -110653,9 +110663,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_listclaims", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "calls", @@ -110664,9 +110674,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_transitionclaim", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "calls", @@ -110675,9 +110685,9 @@ "source_file": "src/Billing/Controller/BillingController.php", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_billingcontroller_billingcontroller_insurancedebt", - "target": "controller_billingcontroller_billingcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_billingcontroller_billingcontroller_resolveentity" }, { "relation": "contains", @@ -110685,9 +110695,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim", - "target": "entity_claim_claim", - "confidence_score": 1.0 + "target": "entity_claim_claim" }, { "relation": "imports", @@ -110696,9 +110706,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim", - "target": "src_billing_entity_claim_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_claim_php_collection" }, { "relation": "method", @@ -110706,9 +110716,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_additem", - "confidence_score": 1.0 + "target": "entity_claim_claim_additem" }, { "relation": "method", @@ -110716,9 +110726,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_approve", - "confidence_score": 1.0 + "target": "entity_claim_claim_approve" }, { "relation": "method", @@ -110726,9 +110736,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_cantransitionto", - "confidence_score": 1.0 + "target": "entity_claim_claim_cantransitionto" }, { "relation": "method", @@ -110736,9 +110746,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_construct", - "confidence_score": 1.0 + "target": "entity_claim_claim_construct" }, { "relation": "method", @@ -110746,9 +110756,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getentityid", - "confidence_score": 1.0 + "target": "entity_claim_claim_getentityid" }, { "relation": "method", @@ -110756,9 +110766,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getentitytype", - "confidence_score": 1.0 + "target": "entity_claim_claim_getentitytype" }, { "relation": "method", @@ -110766,9 +110776,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getid", - "confidence_score": 1.0 + "target": "entity_claim_claim_getid" }, { "relation": "method", @@ -110776,9 +110786,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getinsuranceid", - "confidence_score": 1.0 + "target": "entity_claim_claim_getinsuranceid" }, { "relation": "method", @@ -110786,9 +110796,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getinsurancekind", - "confidence_score": 1.0 + "target": "entity_claim_claim_getinsurancekind" }, { "relation": "method", @@ -110796,9 +110806,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getitems", - "confidence_score": 1.0 + "target": "entity_claim_claim_getitems" }, { "relation": "method", @@ -110806,9 +110816,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getstatus", - "confidence_score": 1.0 + "target": "entity_claim_claim_getstatus" }, { "relation": "method", @@ -110816,9 +110826,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_gettotalapprovedrials", - "confidence_score": 1.0 + "target": "entity_claim_claim_gettotalapprovedrials" }, { "relation": "method", @@ -110826,9 +110836,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_gettotalclaimedrials", - "confidence_score": 1.0 + "target": "entity_claim_claim_gettotalclaimedrials" }, { "relation": "method", @@ -110836,9 +110846,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_gettotalpaidrials", - "confidence_score": 1.0 + "target": "entity_claim_claim_gettotalpaidrials" }, { "relation": "method", @@ -110846,9 +110856,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_getuuid", - "confidence_score": 1.0 + "target": "entity_claim_claim_getuuid" }, { "relation": "method", @@ -110856,9 +110866,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_pay", - "confidence_score": 1.0 + "target": "entity_claim_claim_pay" }, { "relation": "method", @@ -110866,9 +110876,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_reject", - "confidence_score": 1.0 + "target": "entity_claim_claim_reject" }, { "relation": "method", @@ -110876,9 +110886,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_submit", - "confidence_score": 1.0 + "target": "entity_claim_claim_submit" }, { "relation": "method", @@ -110886,9 +110896,9 @@ "source_file": "src/Billing/Entity/Claim.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "entity_claim_claim_toarray", - "confidence_score": 1.0 + "target": "entity_claim_claim_toarray" }, { "relation": "references", @@ -110897,9 +110907,9 @@ "source_location": "L81", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_claim_claim", - "target": "src_billing_entity_claim_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_claim_php_collection" }, { "relation": "references", @@ -110908,9 +110918,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_claim_claim_getitems", - "target": "src_billing_entity_claim_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_claim_php_collection" }, { "relation": "calls", @@ -110930,9 +110940,9 @@ "source_location": "L109", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_claim_claim_additem", - "target": "claimitem", - "confidence_score": 1.0 + "target": "claimitem" }, { "relation": "calls", @@ -110952,9 +110962,9 @@ "source_location": "L109", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_claim_claim_additem", - "target": "src_billing_entity_claim_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_claim_php_self" }, { "relation": "imports", @@ -110963,9 +110973,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository", - "target": "claimitem", - "confidence_score": 1.0 + "target": "claimitem" }, { "relation": "imports", @@ -110974,9 +110984,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice", - "target": "claimitem", - "confidence_score": 1.0 + "target": "claimitem" }, { "relation": "calls", @@ -111028,9 +111038,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem", - "target": "entity_claimitem_claimitem", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem" }, { "relation": "method", @@ -111038,9 +111048,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_construct", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_construct" }, { "relation": "method", @@ -111048,9 +111058,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_getapprovedrials", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_getapprovedrials" }, { "relation": "method", @@ -111058,9 +111068,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_getclaimedrials", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_getclaimedrials" }, { "relation": "method", @@ -111068,9 +111078,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_getid", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_getid" }, { "relation": "method", @@ -111078,9 +111088,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_getinvoiceitemid", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_getinvoiceitemid" }, { "relation": "method", @@ -111088,9 +111098,9 @@ "source_file": "src/Billing/Entity/ClaimItem.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "entity_claimitem_claimitem_toarray", - "confidence_score": 1.0 + "target": "entity_claimitem_claimitem_toarray" }, { "relation": "references", @@ -111099,9 +111109,9 @@ "source_location": "L18", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_claimitem_claimitem", - "target": "src_billing_entity_claimitem_php_claim", - "confidence_score": 1.0 + "target": "src_billing_entity_claimitem_php_claim" }, { "relation": "references", @@ -111110,9 +111120,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_claimitem_claimitem_construct", - "target": "src_billing_entity_claimitem_php_claim", - "confidence_score": 1.0 + "target": "src_billing_entity_claimitem_php_claim" }, { "relation": "contains", @@ -111120,9 +111130,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice", - "target": "entity_invoice_invoice", - "confidence_score": 1.0 + "target": "entity_invoice_invoice" }, { "relation": "imports", @@ -111131,9 +111141,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice", - "target": "src_billing_entity_invoice_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_collection" }, { "relation": "method", @@ -111141,9 +111151,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_additem", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_additem" }, { "relation": "method", @@ -111151,9 +111161,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_construct", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_construct" }, { "relation": "method", @@ -111161,9 +111171,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_finalize", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_finalize" }, { "relation": "method", @@ -111171,9 +111181,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getbaseinsuranceid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getbaseinsuranceid" }, { "relation": "method", @@ -111181,9 +111191,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getentityid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getentityid" }, { "relation": "method", @@ -111191,9 +111201,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getentitytype", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getentitytype" }, { "relation": "method", @@ -111201,9 +111211,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getid" }, { "relation": "method", @@ -111211,9 +111221,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getitems", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getitems" }, { "relation": "method", @@ -111221,9 +111231,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getpatientrials", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getpatientrials" }, { "relation": "method", @@ -111231,9 +111241,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getstatus", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getstatus" }, { "relation": "method", @@ -111241,9 +111251,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getsupplementaryinsuranceid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getsupplementaryinsuranceid" }, { "relation": "method", @@ -111251,9 +111261,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_gettotalrials", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_gettotalrials" }, { "relation": "method", @@ -111261,9 +111271,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_getuuid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getuuid" }, { "relation": "method", @@ -111271,9 +111281,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_recalculatetotals", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_recalculatetotals" }, { "relation": "method", @@ -111281,9 +111291,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_setbaseinsuranceid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_setbaseinsuranceid" }, { "relation": "method", @@ -111291,9 +111301,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_setpatientrecordid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_setpatientrecordid" }, { "relation": "method", @@ -111301,9 +111311,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_setpatientsessionid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_setpatientsessionid" }, { "relation": "method", @@ -111311,9 +111321,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_setsupplementaryinsuranceid", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_setsupplementaryinsuranceid" }, { "relation": "method", @@ -111321,9 +111331,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "entity_invoice_invoice_toarray", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_toarray" }, { "relation": "references", @@ -111332,9 +111342,9 @@ "source_location": "L72", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_invoice_invoice", - "target": "src_billing_entity_invoice_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_collection" }, { "relation": "references", @@ -111343,9 +111353,9 @@ "source_location": "L96", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_getitems", - "target": "src_billing_entity_invoice_php_collection", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_collection" }, { "relation": "calls", @@ -111365,9 +111375,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice_recalculatetotals", - "target": "entity_invoice_invoice_gettotalrials", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_gettotalrials" }, { "relation": "calls", @@ -111376,9 +111386,9 @@ "source_file": "src/Billing/Entity/Invoice.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoice_invoice_recalculatetotals", - "target": "entity_invoice_invoice_getpatientrials", - "confidence_score": 1.0 + "target": "entity_invoice_invoice_getpatientrials" }, { "relation": "references", @@ -111387,9 +111397,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_setpatientsessionid", - "target": "src_billing_entity_invoice_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_self" }, { "relation": "references", @@ -111398,9 +111408,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_additem", - "target": "src_billing_entity_invoice_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_self" }, { "relation": "references", @@ -111409,9 +111419,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_setbaseinsuranceid", - "target": "src_billing_entity_invoice_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_self" }, { "relation": "references", @@ -111420,9 +111430,9 @@ "source_location": "L99", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_setpatientrecordid", - "target": "src_billing_entity_invoice_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_self" }, { "relation": "references", @@ -111431,9 +111441,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_setsupplementaryinsuranceid", - "target": "src_billing_entity_invoice_php_self", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_self" }, { "relation": "references", @@ -111442,9 +111452,9 @@ "source_location": "L103", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_invoice_invoice_additem", - "target": "src_billing_entity_invoice_php_invoiceitem", - "confidence_score": 1.0 + "target": "src_billing_entity_invoice_php_invoiceitem" }, { "relation": "calls", @@ -111474,9 +111484,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem", - "target": "entity_invoiceitem_invoiceitem", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem" }, { "relation": "imports", @@ -111485,9 +111495,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem", - "target": "src_billing_entity_invoiceitem_php_sharebreakdown", - "confidence_score": 1.0 + "target": "src_billing_entity_invoiceitem_php_sharebreakdown" }, { "relation": "method", @@ -111495,9 +111505,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_attachto", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_attachto" }, { "relation": "method", @@ -111505,9 +111515,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_construct", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_construct" }, { "relation": "method", @@ -111515,9 +111525,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getbaseinsurancerials", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getbaseinsurancerials" }, { "relation": "method", @@ -111525,9 +111535,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getid", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getid" }, { "relation": "method", @@ -111535,9 +111545,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getpatientrials", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getpatientrials" }, { "relation": "method", @@ -111545,9 +111555,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getserviceitemid", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getserviceitemid" }, { "relation": "method", @@ -111555,9 +111565,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getsupplementaryrials", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getsupplementaryrials" }, { "relation": "method", @@ -111565,9 +111575,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_gettotalrials", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_gettotalrials" }, { "relation": "method", @@ -111575,9 +111585,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_getuuid", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_getuuid" }, { "relation": "method", @@ -111585,9 +111595,9 @@ "source_file": "src/Billing/Entity/InvoiceItem.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "entity_invoiceitem_invoiceitem_toarray", - "confidence_score": 1.0 + "target": "entity_invoiceitem_invoiceitem_toarray" }, { "relation": "references", @@ -111596,9 +111606,9 @@ "source_location": "L22", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem", - "target": "src_billing_entity_invoiceitem_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_entity_invoiceitem_php_invoice" }, { "relation": "references", @@ -111607,9 +111617,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem_attachto", - "target": "src_billing_entity_invoiceitem_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_entity_invoiceitem_php_invoice" }, { "relation": "references", @@ -111618,9 +111628,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem_construct", - "target": "src_billing_entity_invoiceitem_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_entity_invoiceitem_php_invoice" }, { "relation": "references", @@ -111629,9 +111639,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_invoiceitem_invoiceitem_construct", - "target": "src_billing_entity_invoiceitem_php_sharebreakdown", - "confidence_score": 1.0 + "target": "src_billing_entity_invoiceitem_php_sharebreakdown" }, { "relation": "contains", @@ -111639,9 +111649,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository", - "target": "repository_claimitemrepository_claimitemrepository", - "confidence_score": 1.0 + "target": "repository_claimitemrepository_claimitemrepository" }, { "relation": "imports", @@ -111650,9 +111660,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository", - "target": "src_billing_repository_claimitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_claimitemrepository_php_managerregistry" }, { "relation": "method", @@ -111660,9 +111670,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository_claimitemrepository", - "target": "repository_claimitemrepository_claimitemrepository_construct", - "confidence_score": 1.0 + "target": "repository_claimitemrepository_claimitemrepository_construct" }, { "relation": "method", @@ -111670,9 +111680,9 @@ "source_file": "src/Billing/Repository/ClaimItemRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimitemrepository_claimitemrepository", - "target": "repository_claimitemrepository_claimitemrepository_existsforinvoiceitem", - "confidence_score": 1.0 + "target": "repository_claimitemrepository_claimitemrepository_existsforinvoiceitem" }, { "relation": "references", @@ -111681,9 +111691,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_claimitemrepository_claimitemrepository_construct", - "target": "src_billing_repository_claimitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_claimitemrepository_php_managerregistry" }, { "relation": "contains", @@ -111691,9 +111701,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository", - "target": "repository_claimrepository_claimrepository", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository" }, { "relation": "imports", @@ -111702,9 +111712,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository", - "target": "src_billing_repository_claimrepository_php_claim", - "confidence_score": 1.0 + "target": "src_billing_repository_claimrepository_php_claim" }, { "relation": "imports", @@ -111713,9 +111723,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository", - "target": "src_billing_repository_claimrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_claimrepository_php_managerregistry" }, { "relation": "method", @@ -111723,9 +111733,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_construct", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_construct" }, { "relation": "method", @@ -111733,9 +111743,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_debtreport", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_debtreport" }, { "relation": "method", @@ -111743,9 +111753,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_existsforinvoice", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_existsforinvoice" }, { "relation": "method", @@ -111753,9 +111763,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_findbytenant", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_findbytenant" }, { "relation": "method", @@ -111763,9 +111773,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_findbyuuid" }, { "relation": "method", @@ -111773,9 +111783,9 @@ "source_file": "src/Billing/Repository/ClaimRepository.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository", - "target": "repository_claimrepository_claimrepository_save", - "confidence_score": 1.0 + "target": "repository_claimrepository_claimrepository_save" }, { "relation": "references_constant", @@ -111794,9 +111804,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository_construct", - "target": "src_billing_repository_claimrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_claimrepository_php_managerregistry" }, { "relation": "references", @@ -111805,9 +111815,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository_findbyuuid", - "target": "src_billing_repository_claimrepository_php_claim", - "confidence_score": 1.0 + "target": "src_billing_repository_claimrepository_php_claim" }, { "relation": "references", @@ -111816,9 +111826,9 @@ "source_location": "L114", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_claimrepository_claimrepository_save", - "target": "src_billing_repository_claimrepository_php_claim", - "confidence_score": 1.0 + "target": "src_billing_repository_claimrepository_php_claim" }, { "relation": "contains", @@ -111826,9 +111836,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository", - "target": "repository_invoiceitemrepository_invoiceitemrepository", - "confidence_score": 1.0 + "target": "repository_invoiceitemrepository_invoiceitemrepository" }, { "relation": "imports", @@ -111837,9 +111847,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository", - "target": "src_billing_repository_invoiceitemrepository_php_invoiceitem", - "confidence_score": 1.0 + "target": "src_billing_repository_invoiceitemrepository_php_invoiceitem" }, { "relation": "imports", @@ -111848,9 +111858,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository", - "target": "src_billing_repository_invoiceitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_invoiceitemrepository_php_managerregistry" }, { "relation": "method", @@ -111858,9 +111868,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository", - "target": "repository_invoiceitemrepository_invoiceitemrepository_construct", - "confidence_score": 1.0 + "target": "repository_invoiceitemrepository_invoiceitemrepository_construct" }, { "relation": "method", @@ -111868,9 +111878,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository", - "target": "repository_invoiceitemrepository_invoiceitemrepository_detailsforids", - "confidence_score": 1.0 + "target": "repository_invoiceitemrepository_invoiceitemrepository_detailsforids" }, { "relation": "method", @@ -111878,9 +111888,9 @@ "source_file": "src/Billing/Repository/InvoiceItemRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository", - "target": "repository_invoiceitemrepository_invoiceitemrepository_save", - "confidence_score": 1.0 + "target": "repository_invoiceitemrepository_invoiceitemrepository_save" }, { "relation": "references_constant", @@ -111899,9 +111909,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository_construct", - "target": "src_billing_repository_invoiceitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_invoiceitemrepository_php_managerregistry" }, { "relation": "references", @@ -111910,9 +111920,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_invoiceitemrepository_invoiceitemrepository_save", - "target": "src_billing_repository_invoiceitemrepository_php_invoiceitem", - "confidence_score": 1.0 + "target": "src_billing_repository_invoiceitemrepository_php_invoiceitem" }, { "relation": "contains", @@ -111920,9 +111930,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository", - "target": "repository_invoicerepository_invoicerepository", - "confidence_score": 1.0 + "target": "repository_invoicerepository_invoicerepository" }, { "relation": "imports", @@ -111931,9 +111941,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository", - "target": "src_billing_repository_invoicerepository_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_invoice" }, { "relation": "imports", @@ -111942,9 +111952,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository", - "target": "src_billing_repository_invoicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_managerregistry" }, { "relation": "method", @@ -111952,9 +111962,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository", - "target": "repository_invoicerepository_invoicerepository_construct", - "confidence_score": 1.0 + "target": "repository_invoicerepository_invoicerepository_construct" }, { "relation": "method", @@ -111962,9 +111972,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository", - "target": "repository_invoicerepository_invoicerepository_findbysession", - "confidence_score": 1.0 + "target": "repository_invoicerepository_invoicerepository_findbysession" }, { "relation": "method", @@ -111972,9 +111982,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository", - "target": "repository_invoicerepository_invoicerepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_invoicerepository_invoicerepository_findbyuuid" }, { "relation": "method", @@ -111982,9 +111992,9 @@ "source_file": "src/Billing/Repository/InvoiceRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository", - "target": "repository_invoicerepository_invoicerepository_save", - "confidence_score": 1.0 + "target": "repository_invoicerepository_invoicerepository_save" }, { "relation": "references_constant", @@ -112003,9 +112013,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository_construct", - "target": "src_billing_repository_invoicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_managerregistry" }, { "relation": "references", @@ -112014,9 +112024,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository_findbyuuid", - "target": "src_billing_repository_invoicerepository_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_invoice" }, { "relation": "references", @@ -112025,9 +112035,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository_findbysession", - "target": "src_billing_repository_invoicerepository_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_invoice" }, { "relation": "references", @@ -112036,9 +112046,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_invoicerepository_invoicerepository_save", - "target": "src_billing_repository_invoicerepository_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_repository_invoicerepository_php_invoice" }, { "relation": "imports", @@ -112047,9 +112057,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator", - "target": "money", - "confidence_score": 1.0 + "target": "money" }, { "relation": "contains", @@ -112057,9 +112067,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator", - "target": "service_billingcalculator_billingcalculator", - "confidence_score": 1.0 + "target": "service_billingcalculator_billingcalculator" }, { "relation": "imports", @@ -112068,9 +112078,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator", - "target": "src_billing_service_billingcalculator_php_coveragerule", - "confidence_score": 1.0 + "target": "src_billing_service_billingcalculator_php_coveragerule" }, { "relation": "imports", @@ -112079,9 +112089,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator", - "target": "src_billing_service_billingcalculator_php_sharebreakdown", - "confidence_score": 1.0 + "target": "src_billing_service_billingcalculator_php_sharebreakdown" }, { "relation": "method", @@ -112089,9 +112099,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator_billingcalculator", - "target": "service_billingcalculator_billingcalculator_calculateitem", - "confidence_score": 1.0 + "target": "service_billingcalculator_billingcalculator_calculateitem" }, { "relation": "references", @@ -112100,9 +112110,9 @@ "source_file": "src/Billing/Service/BillingCalculator.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_billingcalculator_billingcalculator_calculateitem", - "target": "money", - "confidence_score": 1.0 + "target": "money" }, { "relation": "references", @@ -112111,9 +112121,9 @@ "source_location": "L15", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_billingcalculator_billingcalculator_calculateitem", - "target": "src_billing_service_billingcalculator_php_coveragerule", - "confidence_score": 1.0 + "target": "src_billing_service_billingcalculator_php_coveragerule" }, { "relation": "references", @@ -112122,9 +112132,9 @@ "source_location": "L15", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_billingcalculator_billingcalculator_calculateitem", - "target": "src_billing_service_billingcalculator_php_sharebreakdown", - "confidence_score": 1.0 + "target": "src_billing_service_billingcalculator_php_sharebreakdown" }, { "relation": "imports", @@ -112133,9 +112143,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest", - "target": "money", - "confidence_score": 1.0 + "target": "money" }, { "relation": "imports", @@ -112144,9 +112154,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice", - "target": "money", - "confidence_score": 1.0 + "target": "money" }, { "relation": "imports", @@ -112155,9 +112165,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "money", - "confidence_score": 1.0 + "target": "money" }, { "relation": "imports", @@ -112166,9 +112176,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice", - "target": "claimsubmitterinterface", - "confidence_score": 1.0 + "target": "claimsubmitterinterface" }, { "relation": "contains", @@ -112176,9 +112186,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice", - "target": "service_claimservice_claimservice", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice" }, { "relation": "imports", @@ -112187,9 +112197,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice", - "target": "src_billing_service_claimservice_php_claim", - "confidence_score": 1.0 + "target": "src_billing_service_claimservice_php_claim" }, { "relation": "imports", @@ -112198,9 +112208,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice", - "target": "src_billing_service_claimservice_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_service_claimservice_php_invoice" }, { "relation": "method", @@ -112208,9 +112218,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice", - "target": "service_claimservice_claimservice_buildclaim", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_buildclaim" }, { "relation": "method", @@ -112218,9 +112228,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice", - "target": "service_claimservice_claimservice_construct", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_construct" }, { "relation": "method", @@ -112228,9 +112238,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice", - "target": "service_claimservice_claimservice_createfrominvoice", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_createfrominvoice" }, { "relation": "method", @@ -112238,9 +112248,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice", - "target": "service_claimservice_claimservice_dosubmit", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_dosubmit" }, { "relation": "method", @@ -112248,9 +112258,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice", - "target": "service_claimservice_claimservice_transition", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_transition" }, { "relation": "calls", @@ -112259,9 +112269,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice_createfrominvoice", - "target": "service_claimservice_claimservice_buildclaim", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_buildclaim" }, { "relation": "references_constant", @@ -112291,9 +112301,9 @@ "source_location": "L65", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_claimservice_claimservice_buildclaim", - "target": "src_billing_service_claimservice_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_service_claimservice_php_invoice" }, { "relation": "references_constant", @@ -112313,9 +112323,9 @@ "source_location": "L105", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_claimservice_claimservice_dosubmit", - "target": "src_billing_service_claimservice_php_claim", - "confidence_score": 1.0 + "target": "src_billing_service_claimservice_php_claim" }, { "relation": "references_constant", @@ -112335,9 +112345,9 @@ "source_file": "src/Billing/Service/ClaimService.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "service_claimservice_claimservice_transition", - "target": "service_claimservice_claimservice_dosubmit", - "confidence_score": 1.0 + "target": "service_claimservice_claimservice_dosubmit" }, { "relation": "contains", @@ -112345,9 +112355,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice", - "target": "service_invoiceservice_invoiceservice", - "confidence_score": 1.0 + "target": "service_invoiceservice_invoiceservice" }, { "relation": "imports", @@ -112356,9 +112366,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice", - "target": "src_billing_service_invoiceservice_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_service_invoiceservice_php_invoice" }, { "relation": "imports", @@ -112367,9 +112377,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice", - "target": "src_billing_service_invoiceservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_billing_service_invoiceservice_php_patientsession" }, { "relation": "method", @@ -112377,9 +112387,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice", - "target": "service_invoiceservice_invoiceservice_construct", - "confidence_score": 1.0 + "target": "service_invoiceservice_invoiceservice_construct" }, { "relation": "method", @@ -112387,9 +112397,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice", - "target": "service_invoiceservice_invoiceservice_createfromsession", - "confidence_score": 1.0 + "target": "service_invoiceservice_invoiceservice_createfromsession" }, { "relation": "method", @@ -112397,9 +112407,9 @@ "source_file": "src/Billing/Service/InvoiceService.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice", - "target": "service_invoiceservice_invoiceservice_finalize", - "confidence_score": 1.0 + "target": "service_invoiceservice_invoiceservice_finalize" }, { "relation": "references", @@ -112408,9 +112418,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice_createfromsession", - "target": "src_billing_service_invoiceservice_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_service_invoiceservice_php_invoice" }, { "relation": "references", @@ -112419,9 +112429,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice_createfromsession", - "target": "src_billing_service_invoiceservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_billing_service_invoiceservice_php_patientsession" }, { "relation": "references", @@ -112430,9 +112440,9 @@ "source_location": "L72", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_invoiceservice_invoiceservice_finalize", - "target": "src_billing_service_invoiceservice_php_invoice", - "confidence_score": 1.0 + "target": "src_billing_service_invoiceservice_php_invoice" }, { "relation": "imports", @@ -112441,9 +112451,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter", - "target": "claimsubmitterinterface", - "confidence_score": 1.0 + "target": "claimsubmitterinterface" }, { "relation": "contains", @@ -112451,9 +112461,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter", - "target": "service_manualclaimsubmitter_manualclaimsubmitter", - "confidence_score": 1.0 + "target": "service_manualclaimsubmitter_manualclaimsubmitter" }, { "relation": "imports", @@ -112462,9 +112472,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter", - "target": "src_billing_service_manualclaimsubmitter_php_claim", - "confidence_score": 1.0 + "target": "src_billing_service_manualclaimsubmitter_php_claim" }, { "relation": "imports", @@ -112473,9 +112483,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter", - "target": "src_billing_service_manualclaimsubmitter_php_claimsubmissionresult", - "confidence_score": 1.0 + "target": "src_billing_service_manualclaimsubmitter_php_claimsubmissionresult" }, { "relation": "implements", @@ -112483,9 +112493,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter_manualclaimsubmitter", - "target": "claimsubmitterinterface", - "confidence_score": 1.0 + "target": "claimsubmitterinterface" }, { "relation": "method", @@ -112493,9 +112503,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter_manualclaimsubmitter", - "target": "service_manualclaimsubmitter_manualclaimsubmitter_submit", - "confidence_score": 1.0 + "target": "service_manualclaimsubmitter_manualclaimsubmitter_submit" }, { "relation": "references", @@ -112504,9 +112514,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_manualclaimsubmitter_manualclaimsubmitter_submit", - "target": "src_billing_service_manualclaimsubmitter_php_claim", - "confidence_score": 1.0 + "target": "src_billing_service_manualclaimsubmitter_php_claim" }, { "relation": "references", @@ -112515,9 +112525,9 @@ "source_file": "src/Billing/Service/ManualClaimSubmitter.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_manualclaimsubmitter_manualclaimsubmitter_submit", - "target": "src_billing_service_manualclaimsubmitter_php_claimsubmissionresult", - "confidence_score": 1.0 + "target": "src_billing_service_manualclaimsubmitter_php_claimsubmissionresult" }, { "relation": "contains", @@ -112525,9 +112535,9 @@ "source_file": "src/Billing/ValueObject/Money.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_money", - "target": "valueobject_money_money", - "confidence_score": 1.0 + "target": "valueobject_money_money" }, { "relation": "references", @@ -112536,9 +112546,9 @@ "source_location": "L19", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "valueobject_money_money_add", - "target": "valueobject_money_money", - "confidence_score": 1.0 + "target": "valueobject_money_money" }, { "relation": "method", @@ -112546,9 +112556,9 @@ "source_file": "src/Billing/ValueObject/Money.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_money_money", - "target": "valueobject_money_money_construct", - "confidence_score": 1.0 + "target": "valueobject_money_money_construct" }, { "relation": "references", @@ -112557,9 +112567,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "valueobject_money_money_min", - "target": "valueobject_money_money", - "confidence_score": 1.0 + "target": "valueobject_money_money" }, { "relation": "method", @@ -112567,9 +112577,9 @@ "source_file": "src/Billing/ValueObject/Money.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_money_money", - "target": "valueobject_money_money_percent", - "confidence_score": 1.0 + "target": "valueobject_money_money_percent" }, { "relation": "references", @@ -112578,9 +112588,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "valueobject_money_money_sub", - "target": "valueobject_money_money", - "confidence_score": 1.0 + "target": "valueobject_money_money" }, { "relation": "method", @@ -112588,9 +112598,9 @@ "source_file": "src/Billing/ValueObject/Money.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_money_money", - "target": "valueobject_money_money_zero", - "confidence_score": 1.0 + "target": "valueobject_money_money_zero" }, { "relation": "references", @@ -112599,9 +112609,9 @@ "source_location": "L14", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_money_money_zero", - "target": "src_billing_valueobject_money_php_self", - "confidence_score": 1.0 + "target": "src_billing_valueobject_money_php_self" }, { "relation": "references", @@ -112610,9 +112620,9 @@ "source_location": "L19", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_money_money_add", - "target": "src_billing_valueobject_money_php_self", - "confidence_score": 1.0 + "target": "src_billing_valueobject_money_php_self" }, { "relation": "references", @@ -112621,9 +112631,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_money_money_min", - "target": "src_billing_valueobject_money_php_self", - "confidence_score": 1.0 + "target": "src_billing_valueobject_money_php_self" }, { "relation": "references", @@ -112632,9 +112642,9 @@ "source_location": "L29", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_money_money_percent", - "target": "src_billing_valueobject_money_php_self", - "confidence_score": 1.0 + "target": "src_billing_valueobject_money_php_self" }, { "relation": "references", @@ -112643,9 +112653,9 @@ "source_location": "L24", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_money_money_sub", - "target": "src_billing_valueobject_money_php_self", - "confidence_score": 1.0 + "target": "src_billing_valueobject_money_php_self" }, { "relation": "contains", @@ -112653,9 +112663,9 @@ "source_file": "src/Billing/ValueObject/ShareBreakdown.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_sharebreakdown", - "target": "valueobject_sharebreakdown_sharebreakdown", - "confidence_score": 1.0 + "target": "valueobject_sharebreakdown_sharebreakdown" }, { "relation": "method", @@ -112663,9 +112673,9 @@ "source_file": "src/Billing/ValueObject/ShareBreakdown.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_sharebreakdown_sharebreakdown", - "target": "valueobject_sharebreakdown_sharebreakdown_construct", - "confidence_score": 1.0 + "target": "valueobject_sharebreakdown_sharebreakdown_construct" }, { "relation": "method", @@ -112673,9 +112683,9 @@ "source_file": "src/Billing/ValueObject/ShareBreakdown.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_sharebreakdown_sharebreakdown", - "target": "valueobject_sharebreakdown_sharebreakdown_toarray", - "confidence_score": 1.0 + "target": "valueobject_sharebreakdown_sharebreakdown_toarray" }, { "relation": "imports", @@ -112684,9 +112694,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "imports", @@ -112695,9 +112705,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -112705,9 +112715,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller" }, { "relation": "imports", @@ -112716,9 +112726,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "imports", @@ -112727,9 +112737,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "src_blog_controller_blogcontroller_php_request", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_request" }, { "relation": "imports", @@ -112738,9 +112748,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller", - "target": "src_blog_controller_blogcontroller_php_user", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_user" }, { "relation": "inherits", @@ -112748,9 +112758,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -112758,9 +112768,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_construct", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_construct" }, { "relation": "method", @@ -112768,9 +112778,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_create", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_create" }, { "relation": "method", @@ -112778,9 +112788,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_delete", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_delete" }, { "relation": "method", @@ -112788,9 +112798,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_detail", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_detail" }, { "relation": "method", @@ -112798,9 +112808,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_list", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_list" }, { "relation": "method", @@ -112808,9 +112818,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_update", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_update" }, { "relation": "method", @@ -112818,9 +112828,9 @@ "source_file": "src/Blog/Controller/BlogController.php", "source_location": "L321", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller", - "target": "controller_blogcontroller_blogcontroller_uploadimage", - "confidence_score": 1.0 + "target": "controller_blogcontroller_blogcontroller_uploadimage" }, { "relation": "references", @@ -112829,9 +112839,9 @@ "source_location": "L29", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_list", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112840,9 +112850,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_list", - "target": "src_blog_controller_blogcontroller_php_request", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_request" }, { "relation": "references", @@ -112851,9 +112861,9 @@ "source_location": "L116", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_create", - "target": "src_blog_controller_blogcontroller_php_request", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_request" }, { "relation": "references", @@ -112862,9 +112872,9 @@ "source_location": "L204", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_update", - "target": "src_blog_controller_blogcontroller_php_request", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_request" }, { "relation": "references", @@ -112873,9 +112883,9 @@ "source_location": "L321", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_uploadimage", - "target": "src_blog_controller_blogcontroller_php_request", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_request" }, { "relation": "references", @@ -112884,9 +112894,9 @@ "source_location": "L116", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_create", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112895,9 +112905,9 @@ "source_location": "L272", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_delete", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112906,9 +112916,9 @@ "source_location": "L71", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_detail", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112917,9 +112927,9 @@ "source_location": "L204", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_update", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112928,9 +112938,9 @@ "source_location": "L321", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_uploadimage", - "target": "src_blog_controller_blogcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_jsonresponse" }, { "relation": "references", @@ -112939,9 +112949,9 @@ "source_location": "L116", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_blogcontroller_blogcontroller_create", - "target": "src_blog_controller_blogcontroller_php_user", - "confidence_score": 1.0 + "target": "src_blog_controller_blogcontroller_php_user" }, { "relation": "contains", @@ -112949,9 +112959,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog", - "target": "entity_blog_blog", - "confidence_score": 1.0 + "target": "entity_blog_blog" }, { "relation": "imports", @@ -112960,9 +112970,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog", - "target": "src_blog_entity_blog_php_user", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_user" }, { "relation": "method", @@ -112970,9 +112980,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_authortoarray", - "confidence_score": 1.0 + "target": "entity_blog_blog_authortoarray" }, { "relation": "method", @@ -112980,9 +112990,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_construct", - "confidence_score": 1.0 + "target": "entity_blog_blog_construct" }, { "relation": "method", @@ -112990,9 +113000,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_generateslug", - "confidence_score": 1.0 + "target": "entity_blog_blog_generateslug" }, { "relation": "method", @@ -113000,9 +113010,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getauthor", - "confidence_score": 1.0 + "target": "entity_blog_blog_getauthor" }, { "relation": "method", @@ -113010,9 +113020,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getbody", - "confidence_score": 1.0 + "target": "entity_blog_blog_getbody" }, { "relation": "method", @@ -113020,9 +113030,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getid", - "confidence_score": 1.0 + "target": "entity_blog_blog_getid" }, { "relation": "method", @@ -113030,9 +113040,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getimagepath", - "confidence_score": 1.0 + "target": "entity_blog_blog_getimagepath" }, { "relation": "method", @@ -113040,9 +113050,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getimageurl", - "confidence_score": 1.0 + "target": "entity_blog_blog_getimageurl" }, { "relation": "method", @@ -113050,9 +113060,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getslug", - "confidence_score": 1.0 + "target": "entity_blog_blog_getslug" }, { "relation": "method", @@ -113060,9 +113070,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getstatus", - "confidence_score": 1.0 + "target": "entity_blog_blog_getstatus" }, { "relation": "method", @@ -113070,9 +113080,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getsummary", - "confidence_score": 1.0 + "target": "entity_blog_blog_getsummary" }, { "relation": "method", @@ -113080,9 +113090,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_gettags", - "confidence_score": 1.0 + "target": "entity_blog_blog_gettags" }, { "relation": "method", @@ -113090,9 +113100,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_gettitle", - "confidence_score": 1.0 + "target": "entity_blog_blog_gettitle" }, { "relation": "method", @@ -113100,9 +113110,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_getuuid", - "confidence_score": 1.0 + "target": "entity_blog_blog_getuuid" }, { "relation": "method", @@ -113110,9 +113120,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setbody", - "confidence_score": 1.0 + "target": "entity_blog_blog_setbody" }, { "relation": "method", @@ -113120,9 +113130,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setimagepath", - "confidence_score": 1.0 + "target": "entity_blog_blog_setimagepath" }, { "relation": "method", @@ -113130,9 +113140,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setimageurl", - "confidence_score": 1.0 + "target": "entity_blog_blog_setimageurl" }, { "relation": "method", @@ -113140,9 +113150,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setslug", - "confidence_score": 1.0 + "target": "entity_blog_blog_setslug" }, { "relation": "method", @@ -113150,9 +113160,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setstatus", - "confidence_score": 1.0 + "target": "entity_blog_blog_setstatus" }, { "relation": "method", @@ -113160,9 +113170,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_setsummary", - "confidence_score": 1.0 + "target": "entity_blog_blog_setsummary" }, { "relation": "method", @@ -113170,9 +113180,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_settags", - "confidence_score": 1.0 + "target": "entity_blog_blog_settags" }, { "relation": "method", @@ -113180,9 +113190,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_settitle", - "confidence_score": 1.0 + "target": "entity_blog_blog_settitle" }, { "relation": "method", @@ -113190,9 +113200,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_toarray", - "confidence_score": 1.0 + "target": "entity_blog_blog_toarray" }, { "relation": "method", @@ -113200,9 +113210,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_tolistarray", - "confidence_score": 1.0 + "target": "entity_blog_blog_tolistarray" }, { "relation": "method", @@ -113210,9 +113220,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "references", @@ -113221,9 +113231,9 @@ "source_location": "L44", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_blog_blog", - "target": "src_blog_entity_blog_php_user", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_user" }, { "relation": "references", @@ -113232,9 +113242,9 @@ "source_location": "L60", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_blog_blog_construct", - "target": "src_blog_entity_blog_php_user", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_user" }, { "relation": "references", @@ -113243,9 +113253,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_getauthor", - "target": "src_blog_entity_blog_php_user", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_user" }, { "relation": "calls", @@ -113254,9 +113264,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_construct", - "target": "entity_blog_blog_generateslug", - "confidence_score": 1.0 + "target": "entity_blog_blog_generateslug" }, { "relation": "calls", @@ -113276,9 +113286,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_authortoarray", - "target": "entity_blog_blog_getuuid", - "confidence_score": 1.0 + "target": "entity_blog_blog_getuuid" }, { "relation": "calls", @@ -113287,9 +113297,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_settitle", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "references", @@ -113298,9 +113308,9 @@ "source_location": "L83", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_settitle", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113309,9 +113319,9 @@ "source_location": "L85", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setbody", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113320,9 +113330,9 @@ "source_location": "L88", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setimagepath", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113331,9 +113341,9 @@ "source_location": "L87", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setimageurl", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113342,9 +113352,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setslug", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113353,9 +113363,9 @@ "source_location": "L90", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setstatus", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113364,9 +113374,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_setsummary", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "references", @@ -113375,9 +113385,9 @@ "source_location": "L89", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_blog_blog_settags", - "target": "src_blog_entity_blog_php_self", - "confidence_score": 1.0 + "target": "src_blog_entity_blog_php_self" }, { "relation": "calls", @@ -113386,9 +113396,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setslug", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113397,9 +113407,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setbody", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113408,9 +113418,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setsummary", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113419,9 +113429,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setimageurl", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113430,9 +113440,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setimagepath", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113441,9 +113451,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_settags", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113452,9 +113462,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_setstatus", - "target": "entity_blog_blog_touch", - "confidence_score": 1.0 + "target": "entity_blog_blog_touch" }, { "relation": "calls", @@ -113474,9 +113484,9 @@ "source_file": "src/Blog/Entity/Blog.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_blog_blog_toarray", - "target": "entity_blog_blog_authortoarray", - "confidence_score": 1.0 + "target": "entity_blog_blog_authortoarray" }, { "relation": "imports", @@ -113485,9 +113495,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "contains", @@ -113495,9 +113505,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository", - "target": "repository_blogrepository_blogrepository", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository" }, { "relation": "imports", @@ -113506,9 +113516,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository", - "target": "src_blog_repository_blogrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_blog_repository_blogrepository_php_managerregistry" }, { "relation": "method", @@ -113516,9 +113526,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_applytagfilter", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_applytagfilter" }, { "relation": "method", @@ -113526,9 +113536,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_construct", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_construct" }, { "relation": "method", @@ -113536,9 +113546,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_countpublished", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_countpublished" }, { "relation": "method", @@ -113546,9 +113556,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_findbyslug", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_findbyslug" }, { "relation": "method", @@ -113556,9 +113566,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_findbyuuid" }, { "relation": "method", @@ -113566,9 +113576,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_findpublished", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_findpublished" }, { "relation": "method", @@ -113576,9 +113586,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_remove", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_remove" }, { "relation": "method", @@ -113586,9 +113596,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository", - "target": "repository_blogrepository_blogrepository_save", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_save" }, { "relation": "references_constant", @@ -113607,9 +113617,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_construct", - "target": "src_blog_repository_blogrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_blog_repository_blogrepository_php_managerregistry" }, { "relation": "references", @@ -113618,9 +113628,9 @@ "source_location": "L13", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_findbyuuid", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "references_constant", @@ -113639,9 +113649,9 @@ "source_location": "L14", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_findbyslug", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "references_constant", @@ -113660,9 +113670,9 @@ "source_location": "L54", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_remove", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "references", @@ -113671,9 +113681,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_save", - "target": "blog", - "confidence_score": 1.0 + "target": "blog" }, { "relation": "calls", @@ -113682,9 +113692,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_findpublished", - "target": "repository_blogrepository_blogrepository_applytagfilter", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_applytagfilter" }, { "relation": "calls", @@ -113693,9 +113703,9 @@ "source_file": "src/Blog/Repository/BlogRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_countpublished", - "target": "repository_blogrepository_blogrepository_applytagfilter", - "confidence_score": 1.0 + "target": "repository_blogrepository_blogrepository_applytagfilter" }, { "relation": "references", @@ -113704,9 +113714,9 @@ "source_location": "L43", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_blogrepository_blogrepository_applytagfilter", - "target": "querybuilder", - "confidence_score": 1.0 + "target": "querybuilder" }, { "relation": "imports", @@ -113715,9 +113725,9 @@ "source_file": "src/Category/Controller/CategoryController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_categorycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -113725,9 +113735,9 @@ "source_file": "src/Category/Controller/CategoryController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_categorycontroller", - "target": "controller_categorycontroller_categorycontroller", - "confidence_score": 1.0 + "target": "controller_categorycontroller_categorycontroller" }, { "relation": "imports", @@ -113736,9 +113746,9 @@ "source_file": "src/Category/Controller/CategoryController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_categorycontroller", - "target": "src_category_controller_categorycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_category_controller_categorycontroller_php_jsonresponse" }, { "relation": "inherits", @@ -113746,9 +113756,9 @@ "source_file": "src/Category/Controller/CategoryController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_categorycontroller_categorycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -113756,9 +113766,9 @@ "source_file": "src/Category/Controller/CategoryController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_categorycontroller_categorycontroller", - "target": "controller_categorycontroller_categorycontroller_legacylist", - "confidence_score": 1.0 + "target": "controller_categorycontroller_categorycontroller_legacylist" }, { "relation": "references", @@ -113767,9 +113777,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_categorycontroller_categorycontroller_legacylist", - "target": "src_category_controller_categorycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_category_controller_categorycontroller_php_jsonresponse" }, { "relation": "imports", @@ -113778,9 +113788,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -113788,9 +113798,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller" }, { "relation": "imports", @@ -113799,9 +113809,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "src_clinic_controller_cliniccontroller_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_clinic" }, { "relation": "imports", @@ -113810,9 +113820,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "src_clinic_controller_cliniccontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_doctoraddress" }, { "relation": "imports", @@ -113821,9 +113831,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "imports", @@ -113832,9 +113842,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "imports", @@ -113843,9 +113853,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "inherits", @@ -113853,9 +113863,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -113863,9 +113873,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_construct", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_construct" }, { "relation": "method", @@ -113873,9 +113883,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_create", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_create" }, { "relation": "method", @@ -113883,9 +113893,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L659", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_createaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_createaddress" }, { "relation": "method", @@ -113893,9 +113903,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L709", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_deleteaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_deleteaddress" }, { "relation": "method", @@ -113903,9 +113913,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L341", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_detachdoctor", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_detachdoctor" }, { "relation": "method", @@ -113913,9 +113923,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L279", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_doctorlist", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_doctorlist" }, { "relation": "method", @@ -113923,9 +113933,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L607", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_handlefileupload", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_handlefileupload" }, { "relation": "method", @@ -113933,9 +113943,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic" }, { "relation": "method", @@ -113943,9 +113953,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L732", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress" }, { "relation": "method", @@ -113953,9 +113963,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L228", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_list", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_list" }, { "relation": "method", @@ -113963,9 +113973,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L646", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_listaddresses", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_listaddresses" }, { "relation": "method", @@ -113973,9 +113983,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L575", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata" }, { "relation": "method", @@ -113983,9 +113993,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_show", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_show" }, { "relation": "method", @@ -113993,9 +114003,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_update", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_update" }, { "relation": "method", @@ -114003,9 +114013,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L684", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_updateaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_updateaddress" }, { "relation": "method", @@ -114013,9 +114023,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L378", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_uploadimage", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_uploadimage" }, { "relation": "method", @@ -114023,9 +114033,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_uploadlogo", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_uploadlogo" }, { "relation": "method", @@ -114033,9 +114043,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L468", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller", - "target": "controller_cliniccontroller_cliniccontroller_validategallerysize", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_validategallerysize" }, { "relation": "calls", @@ -114044,9 +114054,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_create", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic" }, { "relation": "calls", @@ -114055,9 +114065,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_create", - "target": "controller_cliniccontroller_cliniccontroller_validategallerysize", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_validategallerysize" }, { "relation": "references", @@ -114066,9 +114076,9 @@ "source_location": "L50", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_create", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114077,9 +114087,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_create", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114088,9 +114098,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_create", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "references", @@ -114099,9 +114109,9 @@ "source_location": "L659", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_createaddress", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114110,9 +114120,9 @@ "source_location": "L279", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_doctorlist", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114121,9 +114131,9 @@ "source_location": "L607", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_handlefileupload", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114132,9 +114142,9 @@ "source_location": "L228", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_list", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114143,9 +114153,9 @@ "source_location": "L152", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114154,9 +114164,9 @@ "source_location": "L684", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_updateaddress", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114165,9 +114175,9 @@ "source_location": "L378", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadimage", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114176,9 +114186,9 @@ "source_location": "L422", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadlogo", - "target": "src_clinic_controller_cliniccontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_request" }, { "relation": "references", @@ -114187,9 +114197,9 @@ "source_location": "L659", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_createaddress", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "references", @@ -114198,9 +114208,9 @@ "source_location": "L709", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_deleteaddress", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "references", @@ -114209,9 +114219,9 @@ "source_location": "L152", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "references", @@ -114220,9 +114230,9 @@ "source_location": "L684", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_updateaddress", - "target": "src_clinic_controller_cliniccontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_user" }, { "relation": "references", @@ -114231,9 +114241,9 @@ "source_location": "L659", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_createaddress", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114242,9 +114252,9 @@ "source_location": "L709", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_deleteaddress", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114253,9 +114263,9 @@ "source_location": "L341", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_detachdoctor", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114264,9 +114274,9 @@ "source_location": "L279", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_doctorlist", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114275,9 +114285,9 @@ "source_location": "L607", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_handlefileupload", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114286,9 +114296,9 @@ "source_location": "L228", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_list", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114297,9 +114307,9 @@ "source_location": "L646", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_listaddresses", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114308,9 +114318,9 @@ "source_location": "L114", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_show", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114319,9 +114329,9 @@ "source_location": "L152", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114330,9 +114340,9 @@ "source_location": "L684", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_updateaddress", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114341,9 +114351,9 @@ "source_location": "L378", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadimage", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114352,9 +114362,9 @@ "source_location": "L422", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadlogo", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "references", @@ -114363,9 +114373,9 @@ "source_location": "L468", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_validategallerysize", - "target": "src_clinic_controller_cliniccontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_jsonresponse" }, { "relation": "calls", @@ -114374,9 +114384,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_show", - "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata" }, { "relation": "calls", @@ -114385,9 +114395,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L220", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinic" }, { "relation": "calls", @@ -114396,9 +114406,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_loadlocationdata" }, { "relation": "calls", @@ -114407,9 +114417,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_update", - "target": "controller_cliniccontroller_cliniccontroller_validategallerysize", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_validategallerysize" }, { "relation": "calls", @@ -114418,9 +114428,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L419", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadimage", - "target": "controller_cliniccontroller_cliniccontroller_handlefileupload", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_handlefileupload" }, { "relation": "calls", @@ -114429,9 +114439,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L463", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_uploadlogo", - "target": "controller_cliniccontroller_cliniccontroller_handlefileupload", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_handlefileupload" }, { "relation": "references", @@ -114440,9 +114450,9 @@ "source_location": "L484", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_hydrateclinic", - "target": "src_clinic_controller_cliniccontroller_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_clinic" }, { "relation": "references", @@ -114451,9 +114461,9 @@ "source_location": "L575", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_loadlocationdata", - "target": "src_clinic_controller_cliniccontroller_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_clinic" }, { "relation": "calls", @@ -114484,9 +114494,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L678", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_createaddress", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress" }, { "relation": "calls", @@ -114495,9 +114505,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L677", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_createaddress", - "target": "src_clinic_controller_cliniccontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_doctoraddress" }, { "relation": "calls", @@ -114506,9 +114516,9 @@ "source_file": "src/Clinic/Controller/ClinicController.php", "source_location": "L703", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_updateaddress", - "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress", - "confidence_score": 1.0 + "target": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress" }, { "relation": "references", @@ -114517,9 +114527,9 @@ "source_location": "L732", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_cliniccontroller_cliniccontroller_hydrateclinicaddress", - "target": "src_clinic_controller_cliniccontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_clinic_controller_cliniccontroller_php_doctoraddress" }, { "relation": "imports", @@ -114528,9 +114538,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "contains", @@ -114538,9 +114548,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic", - "target": "entity_clinic_clinic", - "confidence_score": 1.0 + "target": "entity_clinic_clinic" }, { "relation": "imports", @@ -114549,9 +114559,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "imports", @@ -114560,9 +114570,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic", - "target": "src_clinic_entity_clinic_php_doctor", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_doctor" }, { "relation": "imports", @@ -114571,9 +114581,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic", - "target": "src_clinic_entity_clinic_php_user", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_user" }, { "relation": "method", @@ -114581,9 +114591,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_construct", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_construct" }, { "relation": "method", @@ -114591,9 +114601,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getaddress", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getaddress" }, { "relation": "method", @@ -114601,9 +114611,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getcityid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getcityid" }, { "relation": "method", @@ -114611,9 +114621,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getcliniclogo", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getcliniclogo" }, { "relation": "method", @@ -114621,9 +114631,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getcreatedat", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getcreatedat" }, { "relation": "method", @@ -114631,9 +114641,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L153", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getdoctors", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getdoctors" }, { "relation": "method", @@ -114641,9 +114651,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getid" }, { "relation": "method", @@ -114651,9 +114661,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getimagesclinic", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getimagesclinic" }, { "relation": "method", @@ -114661,9 +114671,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getinfo", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getinfo" }, { "relation": "method", @@ -114671,9 +114681,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getinsurances", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getinsurances" }, { "relation": "method", @@ -114681,9 +114691,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getlatitude", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getlatitude" }, { "relation": "method", @@ -114691,9 +114701,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getlongitude", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getlongitude" }, { "relation": "method", @@ -114701,9 +114711,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getname", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getname" }, { "relation": "method", @@ -114711,9 +114721,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getnotificationmobile", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getnotificationmobile" }, { "relation": "method", @@ -114721,9 +114731,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getprovinceid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getprovinceid" }, { "relation": "method", @@ -114731,9 +114741,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getrepresentationid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getrepresentationid" }, { "relation": "method", @@ -114741,9 +114751,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getservices", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getservices" }, { "relation": "method", @@ -114751,9 +114761,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getsocialmedia", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getsocialmedia" }, { "relation": "method", @@ -114761,9 +114771,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getspecialties", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getspecialties" }, { "relation": "method", @@ -114771,9 +114781,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_gettelephone", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_gettelephone" }, { "relation": "method", @@ -114781,9 +114791,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getupdatedat", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getupdatedat" }, { "relation": "method", @@ -114791,9 +114801,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getuser", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getuser" }, { "relation": "method", @@ -114801,9 +114811,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getuuid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getuuid" }, { "relation": "method", @@ -114811,9 +114821,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_getworkingdays", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getworkingdays" }, { "relation": "method", @@ -114821,9 +114831,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_hasdoctor", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_hasdoctor" }, { "relation": "method", @@ -114831,9 +114841,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_isactive", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_isactive" }, { "relation": "method", @@ -114841,9 +114851,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_isis247", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_isis247" }, { "relation": "method", @@ -114851,9 +114861,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_removedoctor", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_removedoctor" }, { "relation": "method", @@ -114861,9 +114871,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setaddress", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setaddress" }, { "relation": "method", @@ -114871,9 +114881,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setcityid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setcityid" }, { "relation": "method", @@ -114881,9 +114891,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setcliniclogo", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setcliniclogo" }, { "relation": "method", @@ -114891,9 +114901,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setimagesclinic", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setimagesclinic" }, { "relation": "method", @@ -114901,9 +114911,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setinfo", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setinfo" }, { "relation": "method", @@ -114911,9 +114921,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setis247", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setis247" }, { "relation": "method", @@ -114921,9 +114931,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setisactive", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setisactive" }, { "relation": "method", @@ -114931,9 +114941,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setlatitude", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setlatitude" }, { "relation": "method", @@ -114941,9 +114951,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setlongitude", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setlongitude" }, { "relation": "method", @@ -114951,9 +114961,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setname", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setname" }, { "relation": "method", @@ -114961,9 +114971,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setnotificationmobile", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setnotificationmobile" }, { "relation": "method", @@ -114971,9 +114981,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setprovinceid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setprovinceid" }, { "relation": "method", @@ -114981,9 +114991,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setrepresentationid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setrepresentationid" }, { "relation": "method", @@ -114991,9 +115001,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setsocialmedia", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setsocialmedia" }, { "relation": "method", @@ -115001,9 +115011,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_settelephone", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_settelephone" }, { "relation": "method", @@ -115011,9 +115021,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_setworkingdays", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_setworkingdays" }, { "relation": "method", @@ -115021,9 +115031,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_todetailarray", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_todetailarray" }, { "relation": "method", @@ -115031,9 +115041,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_tolistarray", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_tolistarray" }, { "relation": "method", @@ -115041,9 +115051,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "references", @@ -115052,9 +115062,9 @@ "source_location": "L112", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "references", @@ -115063,9 +115073,9 @@ "source_location": "L30", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinic_clinic", - "target": "src_clinic_entity_clinic_php_user", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_user" }, { "relation": "references", @@ -115074,9 +115084,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_construct", - "target": "src_clinic_entity_clinic_php_user", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_user" }, { "relation": "references", @@ -115085,9 +115095,9 @@ "source_location": "L134", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_getuser", - "target": "src_clinic_entity_clinic_php_user", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_user" }, { "relation": "references", @@ -115096,9 +115106,9 @@ "source_location": "L153", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_getdoctors", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "references", @@ -115107,9 +115117,9 @@ "source_location": "L166", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_getinsurances", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "references", @@ -115118,9 +115128,9 @@ "source_location": "L165", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_getservices", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "references", @@ -115129,9 +115139,9 @@ "source_location": "L164", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_getspecialties", - "target": "src_clinic_entity_clinic_php_collection", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_collection" }, { "relation": "calls", @@ -115151,9 +115161,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_todetailarray", - "target": "entity_clinic_clinic_getid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getid" }, { "relation": "calls", @@ -115162,9 +115172,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_tolistarray", - "target": "entity_clinic_clinic_getid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getid" }, { "relation": "calls", @@ -115173,9 +115183,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_todetailarray", - "target": "entity_clinic_clinic_getuuid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getuuid" }, { "relation": "calls", @@ -115184,9 +115194,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_tolistarray", - "target": "entity_clinic_clinic_getuuid", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getuuid" }, { "relation": "calls", @@ -115195,9 +115205,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_todetailarray", - "target": "entity_clinic_clinic_getname", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getname" }, { "relation": "calls", @@ -115206,9 +115216,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_tolistarray", - "target": "entity_clinic_clinic_getname", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_getname" }, { "relation": "references", @@ -115217,9 +115227,9 @@ "source_location": "L155", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_hasdoctor", - "target": "src_clinic_entity_clinic_php_doctor", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_doctor" }, { "relation": "references", @@ -115228,9 +115238,9 @@ "source_location": "L157", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_removedoctor", - "target": "src_clinic_entity_clinic_php_doctor", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_doctor" }, { "relation": "calls", @@ -115239,9 +115249,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_removedoctor", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "references", @@ -115250,9 +115260,9 @@ "source_location": "L157", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_removedoctor", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115261,9 +115271,9 @@ "source_location": "L170", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setaddress", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115272,9 +115282,9 @@ "source_location": "L176", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setcityid", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115283,9 +115293,9 @@ "source_location": "L182", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setcliniclogo", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115294,9 +115304,9 @@ "source_location": "L180", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setimagesclinic", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115305,9 +115315,9 @@ "source_location": "L169", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setinfo", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115316,9 +115326,9 @@ "source_location": "L172", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setis247", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115327,9 +115337,9 @@ "source_location": "L179", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setisactive", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115338,9 +115348,9 @@ "source_location": "L174", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setlatitude", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115349,9 +115359,9 @@ "source_location": "L175", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setlongitude", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115360,9 +115370,9 @@ "source_location": "L168", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setname", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115371,9 +115381,9 @@ "source_location": "L183", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setnotificationmobile", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115382,9 +115392,9 @@ "source_location": "L177", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setprovinceid", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115393,9 +115403,9 @@ "source_location": "L178", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setrepresentationid", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115404,9 +115414,9 @@ "source_location": "L181", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setsocialmedia", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115415,9 +115425,9 @@ "source_location": "L171", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_settelephone", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "references", @@ -115426,9 +115436,9 @@ "source_location": "L173", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinic_clinic_setworkingdays", - "target": "src_clinic_entity_clinic_php_self", - "confidence_score": 1.0 + "target": "src_clinic_entity_clinic_php_self" }, { "relation": "calls", @@ -115437,9 +115447,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setname", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115448,9 +115458,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setinfo", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115459,9 +115469,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setaddress", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115470,9 +115480,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_settelephone", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115481,9 +115491,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setis247", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115492,9 +115502,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setworkingdays", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115503,9 +115513,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setlatitude", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115514,9 +115524,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setlongitude", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115525,9 +115535,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setcityid", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115536,9 +115546,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setprovinceid", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115547,9 +115557,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setrepresentationid", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115558,9 +115568,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setisactive", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115569,9 +115579,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setimagesclinic", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115580,9 +115590,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setsocialmedia", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115591,9 +115601,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setcliniclogo", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115602,9 +115612,9 @@ "source_file": "src/Clinic/Entity/Clinic.php", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinic_clinic_setnotificationmobile", - "target": "entity_clinic_clinic_touch", - "confidence_score": 1.0 + "target": "entity_clinic_clinic_touch" }, { "relation": "calls", @@ -115623,9 +115633,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository" }, { "relation": "imports", @@ -115634,9 +115644,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "src_clinic_repository_clinicrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_clinic" }, { "relation": "imports", @@ -115645,9 +115655,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "src_clinic_repository_clinicrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_doctor" }, { "relation": "imports", @@ -115656,9 +115666,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "src_clinic_repository_clinicrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_managerregistry" }, { "relation": "imports", @@ -115667,9 +115677,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository", - "target": "src_clinic_repository_clinicrepository_php_user", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_user" }, { "relation": "method", @@ -115677,9 +115687,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_construct", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_construct" }, { "relation": "method", @@ -115687,9 +115697,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_findaddresslocations", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_findaddresslocations" }, { "relation": "method", @@ -115697,9 +115707,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_findbydoctor", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_findbydoctor" }, { "relation": "method", @@ -115707,9 +115717,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_findbyuser" }, { "relation": "method", @@ -115717,9 +115727,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_findbyuuid" }, { "relation": "method", @@ -115727,9 +115737,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_findwithfilters", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_findwithfilters" }, { "relation": "method", @@ -115737,9 +115747,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_remove", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_remove" }, { "relation": "method", @@ -115747,9 +115757,9 @@ "source_file": "src/Clinic/Repository/ClinicRepository.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository", - "target": "repository_clinicrepository_clinicrepository_save", - "confidence_score": 1.0 + "target": "repository_clinicrepository_clinicrepository_save" }, { "relation": "references_constant", @@ -115768,9 +115778,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_construct", - "target": "src_clinic_repository_clinicrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_managerregistry" }, { "relation": "references", @@ -115779,9 +115789,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_findbyuuid", - "target": "src_clinic_repository_clinicrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_clinic" }, { "relation": "references", @@ -115790,9 +115800,9 @@ "source_location": "L37", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_findbyuser", - "target": "src_clinic_repository_clinicrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_clinic" }, { "relation": "references", @@ -115801,9 +115811,9 @@ "source_location": "L128", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_remove", - "target": "src_clinic_repository_clinicrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_clinic" }, { "relation": "references", @@ -115812,9 +115822,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_save", - "target": "src_clinic_repository_clinicrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_clinic" }, { "relation": "references", @@ -115823,9 +115833,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_findbydoctor", - "target": "src_clinic_repository_clinicrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_doctor" }, { "relation": "references", @@ -115834,9 +115844,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicrepository_clinicrepository_findbyuser", - "target": "src_clinic_repository_clinicrepository_php_user", - "confidence_score": 1.0 + "target": "src_clinic_repository_clinicrepository_php_user" }, { "relation": "imports", @@ -115845,9 +115855,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -115855,9 +115865,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller" }, { "relation": "imports", @@ -115866,9 +115876,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "imports", @@ -115877,9 +115887,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request" }, { "relation": "imports", @@ -115888,9 +115898,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "inherits", @@ -115898,9 +115908,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -115908,9 +115918,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_acceptinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_acceptinvitation" }, { "relation": "method", @@ -115918,9 +115928,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "method", @@ -115928,9 +115938,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus" }, { "relation": "method", @@ -115938,9 +115948,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_construct", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_construct" }, { "relation": "method", @@ -115948,9 +115958,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_deleteinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_deleteinvitation" }, { "relation": "method", @@ -115958,9 +115968,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor" }, { "relation": "method", @@ -115968,9 +115978,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations" }, { "relation": "method", @@ -115978,9 +115988,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_myinvitations", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_myinvitations" }, { "relation": "method", @@ -115988,9 +115998,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_rejectinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_rejectinvitation" }, { "relation": "method", @@ -115998,9 +116008,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_resendinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_resendinvitation" }, { "relation": "method", @@ -116008,9 +116018,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_respondtoinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_respondtoinvitation" }, { "relation": "method", @@ -116018,9 +116028,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L208", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_viewinvitation", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_viewinvitation" }, { "relation": "calls", @@ -116029,9 +116039,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "references", @@ -116040,9 +116050,9 @@ "source_location": "L32", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116051,9 +116061,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request" }, { "relation": "references", @@ -116062,9 +116072,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_invitedoctor", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116073,9 +116083,9 @@ "source_location": "L104", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request" }, { "relation": "references", @@ -116084,9 +116094,9 @@ "source_location": "L57", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request" }, { "relation": "references", @@ -116095,9 +116105,9 @@ "source_location": "L165", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_respondtoinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_request" }, { "relation": "references", @@ -116106,9 +116116,9 @@ "source_location": "L195", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116117,9 +116127,9 @@ "source_location": "L104", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116128,9 +116138,9 @@ "source_location": "L123", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_deleteinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116139,9 +116149,9 @@ "source_location": "L57", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116150,9 +116160,9 @@ "source_location": "L140", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_myinvitations", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116161,9 +116171,9 @@ "source_location": "L89", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_resendinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116172,9 +116182,9 @@ "source_location": "L165", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_respondtoinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_user" }, { "relation": "references", @@ -116183,9 +116193,9 @@ "source_location": "L229", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_acceptinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116194,9 +116204,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116205,9 +116215,9 @@ "source_location": "L123", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_deleteinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116216,9 +116226,9 @@ "source_location": "L57", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116227,9 +116237,9 @@ "source_location": "L140", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_myinvitations", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116238,9 +116248,9 @@ "source_location": "L242", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_rejectinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116249,9 +116259,9 @@ "source_location": "L89", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_resendinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116260,9 +116270,9 @@ "source_location": "L165", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_respondtoinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "references", @@ -116271,9 +116281,9 @@ "source_location": "L208", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_viewinvitation", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_jsonresponse" }, { "relation": "calls", @@ -116282,9 +116292,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_listinvitations", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "calls", @@ -116293,9 +116303,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_resendinvitation", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "calls", @@ -116304,9 +116314,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_changeinvitationstatus", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "calls", @@ -116315,9 +116325,9 @@ "source_file": "src/ClinicInvitation/Controller/ClinicInvitationController.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_deleteinvitation", - "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "confidence_score": 1.0 + "target": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess" }, { "relation": "references", @@ -116326,9 +116336,9 @@ "source_location": "L195", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicinvitationcontroller_clinicinvitationcontroller_assertclinicaccess", - "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_controller_clinicinvitationcontroller_php_clinic" }, { "relation": "contains", @@ -116336,9 +116346,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation" }, { "relation": "imports", @@ -116347,9 +116357,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic" }, { "relation": "imports", @@ -116358,9 +116368,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor" }, { "relation": "imports", @@ -116369,9 +116379,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user" }, { "relation": "method", @@ -116379,9 +116389,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_construct", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_construct" }, { "relation": "method", @@ -116389,9 +116399,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getclinic", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getclinic" }, { "relation": "method", @@ -116399,9 +116409,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getdoctor", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getdoctor" }, { "relation": "method", @@ -116409,9 +116419,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getexpiresat", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getexpiresat" }, { "relation": "method", @@ -116419,9 +116429,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getid", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getid" }, { "relation": "method", @@ -116429,9 +116439,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedat", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedat" }, { "relation": "method", @@ -116439,9 +116449,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedname", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedname" }, { "relation": "method", @@ -116449,9 +116459,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedspecialty", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getinvitedspecialty" }, { "relation": "method", @@ -116459,9 +116469,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getmobile", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getmobile" }, { "relation": "method", @@ -116469,9 +116479,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getstatus", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getstatus" }, { "relation": "method", @@ -116479,9 +116489,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_gettoken", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_gettoken" }, { "relation": "method", @@ -116489,9 +116499,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getuuid", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getuuid" }, { "relation": "method", @@ -116499,9 +116509,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_istokenused", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_istokenused" }, { "relation": "method", @@ -116509,9 +116519,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_isusable", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_isusable" }, { "relation": "method", @@ -116519,9 +116529,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_markused", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_markused" }, { "relation": "method", @@ -116529,9 +116539,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_refresh", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_refresh" }, { "relation": "method", @@ -116539,9 +116549,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setdoctor", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setdoctor" }, { "relation": "method", @@ -116549,9 +116559,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setinvitedname", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setinvitedname" }, { "relation": "method", @@ -116559,9 +116569,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setinvitedspecialty", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setinvitedspecialty" }, { "relation": "method", @@ -116569,9 +116579,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setstatus", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setstatus" }, { "relation": "method", @@ -116579,9 +116589,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_toarray", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_toarray" }, { "relation": "references", @@ -116590,9 +116600,9 @@ "source_location": "L32", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic" }, { "relation": "references", @@ -116601,9 +116611,9 @@ "source_location": "L40", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor" }, { "relation": "references", @@ -116612,9 +116622,9 @@ "source_location": "L36", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user" }, { "relation": "references", @@ -116623,9 +116633,9 @@ "source_location": "L71", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_construct", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic" }, { "relation": "references", @@ -116634,9 +116644,9 @@ "source_location": "L125", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getclinic", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_clinic" }, { "relation": "references", @@ -116645,9 +116655,9 @@ "source_location": "L71", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_construct", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_user" }, { "relation": "references", @@ -116656,9 +116666,9 @@ "source_location": "L126", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getdoctor", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor" }, { "relation": "references", @@ -116667,9 +116677,9 @@ "source_location": "L136", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_setdoctor", - "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_entity_clinicdoctorinvitation_php_doctor" }, { "relation": "calls", @@ -116722,9 +116732,9 @@ "source_file": "src/ClinicInvitation/Entity/ClinicDoctorInvitation.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicdoctorinvitation_clinicdoctorinvitation_toarray", - "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getuuid", - "confidence_score": 1.0 + "target": "entity_clinicdoctorinvitation_clinicdoctorinvitation_getuuid" }, { "relation": "contains", @@ -116732,9 +116742,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository" }, { "relation": "imports", @@ -116743,9 +116753,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation" }, { "relation": "imports", @@ -116754,9 +116764,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_doctor" }, { "relation": "imports", @@ -116765,9 +116775,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_managerregistry" }, { "relation": "method", @@ -116775,9 +116785,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_construct", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_construct" }, { "relation": "method", @@ -116785,9 +116795,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findbytoken", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findbytoken" }, { "relation": "method", @@ -116795,9 +116805,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findpendingbydoctor", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findpendingbydoctor" }, { "relation": "method", @@ -116805,9 +116815,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findpendingbymobileandclinic", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findpendingbymobileandclinic" }, { "relation": "method", @@ -116815,9 +116825,9 @@ "source_file": "src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository", - "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_save", - "confidence_score": 1.0 + "target": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_save" }, { "relation": "references_constant", @@ -116836,9 +116846,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_construct", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_managerregistry" }, { "relation": "references", @@ -116847,9 +116857,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findbytoken", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation" }, { "relation": "references_constant", @@ -116879,9 +116889,9 @@ "source_location": "L49", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_save", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_clinicdoctorinvitation" }, { "relation": "references", @@ -116890,9 +116900,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicdoctorinvitationrepository_clinicdoctorinvitationrepository_findpendingbydoctor", - "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_clinicinvitation_repository_clinicdoctorinvitationrepository_php_doctor" }, { "relation": "contains", @@ -116900,9 +116910,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice" }, { "relation": "imports", @@ -116911,9 +116921,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic" }, { "relation": "imports", @@ -116922,9 +116932,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation" }, { "relation": "imports", @@ -116933,9 +116943,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_user" }, { "relation": "method", @@ -116943,9 +116953,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_accept", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_accept" }, { "relation": "method", @@ -116953,9 +116963,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_changestatus", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_changestatus" }, { "relation": "method", @@ -116963,9 +116973,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_construct", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_construct" }, { "relation": "method", @@ -116973,9 +116983,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_delete", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_delete" }, { "relation": "method", @@ -116983,9 +116993,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_invite", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_invite" }, { "relation": "method", @@ -116993,9 +117003,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_reject", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_reject" }, { "relation": "method", @@ -117003,9 +117013,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_resend", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_resend" }, { "relation": "method", @@ -117013,9 +117023,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice", - "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms" }, { "relation": "calls", @@ -117024,9 +117034,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_invite", - "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms" }, { "relation": "references", @@ -117035,9 +117045,9 @@ "source_location": "L25", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_invite", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic" }, { "relation": "references", @@ -117046,9 +117056,9 @@ "source_location": "L25", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_invite", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation" }, { "relation": "references", @@ -117057,9 +117067,9 @@ "source_location": "L25", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_invite", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_user", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_user" }, { "relation": "references", @@ -117068,9 +117078,9 @@ "source_location": "L111", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinic" }, { "relation": "references_constant", @@ -117101,9 +117111,9 @@ "source_location": "L68", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_delete", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation" }, { "relation": "references_constant", @@ -117134,9 +117144,9 @@ "source_location": "L111", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation", - "confidence_score": 1.0 + "target": "src_clinicinvitation_service_clinicinvitationservice_php_clinicdoctorinvitation" }, { "relation": "calls", @@ -117145,9 +117155,9 @@ "source_file": "src/ClinicInvitation/Service/ClinicInvitationService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "service_clinicinvitationservice_clinicinvitationservice_resend", - "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms", - "confidence_score": 1.0 + "target": "service_clinicinvitationservice_clinicinvitationservice_sendsms" }, { "relation": "imports", @@ -117156,9 +117166,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -117166,9 +117176,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller" }, { "relation": "imports", @@ -117177,9 +117187,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "imports", @@ -117188,9 +117198,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "imports", @@ -117199,9 +117209,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "src_clinicservice_controller_clinicservicecontroller_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_servicesection" }, { "relation": "imports", @@ -117210,9 +117220,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "inherits", @@ -117220,9 +117230,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -117230,9 +117240,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L303", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "method", @@ -117240,9 +117250,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_construct", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_construct" }, { "relation": "method", @@ -117250,9 +117260,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_createitem" }, { "relation": "method", @@ -117260,9 +117270,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_createsection" }, { "relation": "method", @@ -117270,9 +117280,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem" }, { "relation": "method", @@ -117280,9 +117290,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_deletesection" }, { "relation": "method", @@ -117290,9 +117300,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_listitems" }, { "relation": "method", @@ -117300,9 +117310,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_listsections" }, { "relation": "method", @@ -117310,9 +117320,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs" }, { "relation": "method", @@ -117320,9 +117330,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L314", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "method", @@ -117330,9 +117340,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "method", @@ -117340,9 +117350,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_settariff" }, { "relation": "method", @@ -117350,9 +117360,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_updateitem" }, { "relation": "method", @@ -117360,9 +117370,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller", - "target": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_updatesection" }, { "relation": "calls", @@ -117371,9 +117381,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "calls", @@ -117382,9 +117392,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "references", @@ -117393,9 +117403,9 @@ "source_location": "L43", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117404,9 +117414,9 @@ "source_location": "L43", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listsections", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117415,9 +117425,9 @@ "source_location": "L136", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117426,9 +117436,9 @@ "source_location": "L57", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117437,9 +117447,9 @@ "source_location": "L216", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117448,9 +117458,9 @@ "source_location": "L100", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117459,9 +117469,9 @@ "source_location": "L118", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117470,9 +117480,9 @@ "source_location": "L237", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117481,9 +117491,9 @@ "source_location": "L288", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117492,9 +117502,9 @@ "source_location": "L257", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117503,9 +117513,9 @@ "source_location": "L179", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117514,9 +117524,9 @@ "source_location": "L76", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_user", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_user" }, { "relation": "references", @@ -117525,9 +117535,9 @@ "source_location": "L136", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117536,9 +117546,9 @@ "source_location": "L57", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117547,9 +117557,9 @@ "source_location": "L216", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117558,9 +117568,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117569,9 +117579,9 @@ "source_location": "L118", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117580,9 +117590,9 @@ "source_location": "L237", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117591,9 +117601,9 @@ "source_location": "L257", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117602,9 +117612,9 @@ "source_location": "L179", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -117613,9 +117623,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_jsonresponse" }, { "relation": "calls", @@ -117624,9 +117634,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "calls", @@ -117635,9 +117645,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "references", @@ -117646,9 +117656,9 @@ "source_location": "L57", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createsection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "references", @@ -117657,9 +117667,9 @@ "source_location": "L136", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "references", @@ -117668,9 +117678,9 @@ "source_location": "L257", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "references", @@ -117679,9 +117689,9 @@ "source_location": "L179", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "references", @@ -117690,9 +117700,9 @@ "source_location": "L76", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_request" }, { "relation": "calls", @@ -117712,9 +117722,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "calls", @@ -117723,9 +117733,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117734,9 +117744,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updatesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117756,9 +117766,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "calls", @@ -117767,9 +117777,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117778,9 +117788,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deletesection", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117800,9 +117810,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117811,9 +117821,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listitems", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117822,9 +117832,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_assertservicesgate" }, { "relation": "calls", @@ -117833,9 +117843,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117844,9 +117854,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_createitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117866,9 +117876,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117877,9 +117887,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_updateitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117899,9 +117909,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117910,9 +117920,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_deleteitem", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117932,9 +117942,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L244", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117943,9 +117953,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L241", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_listtariffs", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "calls", @@ -117965,9 +117975,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_ownssection" }, { "relation": "calls", @@ -117976,9 +117986,9 @@ "source_file": "src/ClinicService/Controller/ClinicServiceController.php", "source_location": "L261", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_settariff", - "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_clinicservicecontroller_clinicservicecontroller_resolveentity" }, { "relation": "references", @@ -117987,9 +117997,9 @@ "source_location": "L314", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_clinicservicecontroller_clinicservicecontroller_ownssection", - "target": "src_clinicservice_controller_clinicservicecontroller_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_controller_clinicservicecontroller_php_servicesection" }, { "relation": "contains", @@ -117997,9 +118007,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem", - "target": "entity_serviceitem_serviceitem", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem" }, { "relation": "imports", @@ -118008,9 +118018,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem", - "target": "src_clinicservice_entity_serviceitem_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_clinicstaff" }, { "relation": "method", @@ -118018,9 +118028,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_construct", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_construct" }, { "relation": "method", @@ -118028,9 +118038,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getcreatedat", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getcreatedat" }, { "relation": "method", @@ -118038,9 +118048,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getid", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getid" }, { "relation": "method", @@ -118048,9 +118058,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getinsurancepricerials", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getinsurancepricerials" }, { "relation": "method", @@ -118058,9 +118068,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getname", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getname" }, { "relation": "method", @@ -118068,9 +118078,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getpricerials", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getpricerials" }, { "relation": "method", @@ -118078,9 +118088,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getsection", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getsection" }, { "relation": "method", @@ -118088,9 +118098,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getstaff", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getstaff" }, { "relation": "method", @@ -118098,9 +118108,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getupdatedat", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getupdatedat" }, { "relation": "method", @@ -118108,9 +118118,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_getuuid", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getuuid" }, { "relation": "method", @@ -118118,9 +118128,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_isactive", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_isactive" }, { "relation": "method", @@ -118128,9 +118138,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_isinsurancecovered", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_isinsurancecovered" }, { "relation": "method", @@ -118138,9 +118148,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setactive", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setactive" }, { "relation": "method", @@ -118148,9 +118158,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setinsurancecovered", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setinsurancecovered" }, { "relation": "method", @@ -118158,9 +118168,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setinsurancepricerials", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setinsurancepricerials" }, { "relation": "method", @@ -118168,9 +118178,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setname", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setname" }, { "relation": "method", @@ -118178,9 +118188,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setpricerials", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setpricerials" }, { "relation": "method", @@ -118188,9 +118198,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_setstaff", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_setstaff" }, { "relation": "method", @@ -118198,9 +118208,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "entity_serviceitem_serviceitem_toarray", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_toarray" }, { "relation": "references", @@ -118209,9 +118219,9 @@ "source_location": "L26", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "src_clinicservice_entity_serviceitem_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_clinicstaff" }, { "relation": "references", @@ -118220,9 +118230,9 @@ "source_location": "L22", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem", - "target": "src_clinicservice_entity_serviceitem_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_servicesection" }, { "relation": "references", @@ -118231,9 +118241,9 @@ "source_location": "L51", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_construct", - "target": "src_clinicservice_entity_serviceitem_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_servicesection" }, { "relation": "references", @@ -118242,9 +118252,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_getsection", - "target": "src_clinicservice_entity_serviceitem_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_servicesection" }, { "relation": "references", @@ -118253,9 +118263,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_getstaff", - "target": "src_clinicservice_entity_serviceitem_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_clinicstaff" }, { "relation": "references", @@ -118264,9 +118274,9 @@ "source_location": "L73", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setstaff", - "target": "src_clinicservice_entity_serviceitem_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_clinicstaff" }, { "relation": "calls", @@ -118286,9 +118296,9 @@ "source_file": "src/ClinicService/Entity/ServiceItem.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_toarray", - "target": "entity_serviceitem_serviceitem_getuuid", - "confidence_score": 1.0 + "target": "entity_serviceitem_serviceitem_getuuid" }, { "relation": "calls", @@ -118308,9 +118318,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setstaff", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "references", @@ -118319,9 +118329,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setactive", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "references", @@ -118330,9 +118340,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setinsurancecovered", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "references", @@ -118341,9 +118351,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setinsurancepricerials", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "references", @@ -118352,9 +118362,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setname", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "references", @@ -118363,9 +118373,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_serviceitem_serviceitem_setpricerials", - "target": "src_clinicservice_entity_serviceitem_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_serviceitem_php_self" }, { "relation": "calls", @@ -118428,9 +118438,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection", - "target": "entity_servicesection_servicesection", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection" }, { "relation": "imports", @@ -118439,9 +118449,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection", - "target": "src_clinicservice_entity_servicesection_php_collection", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_servicesection_php_collection" }, { "relation": "method", @@ -118449,9 +118459,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_construct", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_construct" }, { "relation": "method", @@ -118459,9 +118469,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getcreatedat", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getcreatedat" }, { "relation": "method", @@ -118469,9 +118479,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getentityid", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getentityid" }, { "relation": "method", @@ -118479,9 +118489,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getentitytype", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getentitytype" }, { "relation": "method", @@ -118489,9 +118499,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getid", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getid" }, { "relation": "method", @@ -118499,9 +118509,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getname", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getname" }, { "relation": "method", @@ -118509,9 +118519,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getupdatedat", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getupdatedat" }, { "relation": "method", @@ -118519,9 +118529,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_getuuid", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_getuuid" }, { "relation": "method", @@ -118529,9 +118539,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_isactive", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_isactive" }, { "relation": "method", @@ -118539,9 +118549,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_setactive", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_setactive" }, { "relation": "method", @@ -118549,9 +118559,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_setname", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_setname" }, { "relation": "method", @@ -118559,9 +118569,9 @@ "source_file": "src/ClinicService/Entity/ServiceSection.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "entity_servicesection_servicesection_toarray", - "confidence_score": 1.0 + "target": "entity_servicesection_servicesection_toarray" }, { "relation": "references", @@ -118570,9 +118580,9 @@ "source_location": "L42", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_servicesection_servicesection", - "target": "src_clinicservice_entity_servicesection_php_collection", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_servicesection_php_collection" }, { "relation": "calls", @@ -118603,9 +118613,9 @@ "source_location": "L65", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_servicesection_servicesection_setname", - "target": "src_clinicservice_entity_servicesection_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_servicesection_php_self" }, { "relation": "references", @@ -118614,9 +118624,9 @@ "source_location": "L66", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_servicesection_servicesection_setactive", - "target": "src_clinicservice_entity_servicesection_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_servicesection_php_self" }, { "relation": "calls", @@ -118635,9 +118645,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff", - "target": "entity_tariff_tariff", - "confidence_score": 1.0 + "target": "entity_tariff_tariff" }, { "relation": "method", @@ -118645,9 +118655,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_construct", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_construct" }, { "relation": "method", @@ -118655,9 +118665,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_getid", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_getid" }, { "relation": "method", @@ -118665,9 +118675,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_getpricerials", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_getpricerials" }, { "relation": "method", @@ -118675,9 +118685,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_getserviceitemid", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_getserviceitemid" }, { "relation": "method", @@ -118685,9 +118695,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_getuuid", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_getuuid" }, { "relation": "method", @@ -118695,9 +118705,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_getyear", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_getyear" }, { "relation": "method", @@ -118705,9 +118715,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_isactive", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_isactive" }, { "relation": "method", @@ -118715,9 +118725,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_setactive", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_setactive" }, { "relation": "method", @@ -118725,9 +118735,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_setpricerials", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_setpricerials" }, { "relation": "method", @@ -118735,9 +118745,9 @@ "source_file": "src/ClinicService/Entity/Tariff.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tariff_tariff", - "target": "entity_tariff_tariff_toarray", - "confidence_score": 1.0 + "target": "entity_tariff_tariff_toarray" }, { "relation": "calls", @@ -118768,9 +118778,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tariff_tariff_setpricerials", - "target": "src_clinicservice_entity_tariff_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_tariff_php_self" }, { "relation": "references", @@ -118779,9 +118789,9 @@ "source_location": "L59", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tariff_tariff_setactive", - "target": "src_clinicservice_entity_tariff_php_self", - "confidence_score": 1.0 + "target": "src_clinicservice_entity_tariff_php_self" }, { "relation": "calls", @@ -118800,9 +118810,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository" }, { "relation": "imports", @@ -118811,9 +118821,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository", - "target": "src_clinicservice_repository_serviceitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_managerregistry" }, { "relation": "imports", @@ -118822,9 +118832,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository", - "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem" }, { "relation": "imports", @@ -118833,9 +118843,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository", - "target": "src_clinicservice_repository_serviceitemrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_servicesection" }, { "relation": "method", @@ -118843,9 +118853,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository_construct", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository_construct" }, { "relation": "method", @@ -118853,9 +118863,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository_findbysection", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository_findbysection" }, { "relation": "method", @@ -118863,9 +118873,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository_findbyuuid" }, { "relation": "method", @@ -118873,9 +118883,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository_remove", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository_remove" }, { "relation": "method", @@ -118883,9 +118893,9 @@ "source_file": "src/ClinicService/Repository/ServiceItemRepository.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository", - "target": "repository_serviceitemrepository_serviceitemrepository_save", - "confidence_score": 1.0 + "target": "repository_serviceitemrepository_serviceitemrepository_save" }, { "relation": "references", @@ -118894,9 +118904,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository_construct", - "target": "src_clinicservice_repository_serviceitemrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_managerregistry" }, { "relation": "references_constant", @@ -118915,9 +118925,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository_findbyuuid", - "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem" }, { "relation": "references", @@ -118926,9 +118936,9 @@ "source_location": "L38", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository_remove", - "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem" }, { "relation": "references", @@ -118937,9 +118947,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository_save", - "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_serviceitem" }, { "relation": "references", @@ -118948,9 +118958,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_serviceitemrepository_serviceitemrepository_findbysection", - "target": "src_clinicservice_repository_serviceitemrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_serviceitemrepository_php_servicesection" }, { "relation": "contains", @@ -118958,9 +118968,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository" }, { "relation": "imports", @@ -118969,9 +118979,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository", - "target": "src_clinicservice_repository_servicesectionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_managerregistry" }, { "relation": "imports", @@ -118980,9 +118990,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository", - "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection" }, { "relation": "method", @@ -118990,9 +119000,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository_construct", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository_construct" }, { "relation": "method", @@ -119000,9 +119010,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository_findbyentity" }, { "relation": "method", @@ -119010,9 +119020,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository_findbyuuid" }, { "relation": "method", @@ -119020,9 +119030,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository_remove", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository_remove" }, { "relation": "method", @@ -119030,9 +119040,9 @@ "source_file": "src/ClinicService/Repository/ServiceSectionRepository.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository", - "target": "repository_servicesectionrepository_servicesectionrepository_save", - "confidence_score": 1.0 + "target": "repository_servicesectionrepository_servicesectionrepository_save" }, { "relation": "references", @@ -119041,9 +119051,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository_construct", - "target": "src_clinicservice_repository_servicesectionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_managerregistry" }, { "relation": "references_constant", @@ -119062,9 +119072,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository_findbyuuid", - "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection" }, { "relation": "references", @@ -119073,9 +119083,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository_remove", - "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection" }, { "relation": "references", @@ -119084,9 +119094,9 @@ "source_location": "L33", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_servicesectionrepository_servicesectionrepository_save", - "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_servicesectionrepository_php_servicesection" }, { "relation": "contains", @@ -119094,9 +119104,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository" }, { "relation": "imports", @@ -119105,9 +119115,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository", - "target": "src_clinicservice_repository_tariffrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_managerregistry" }, { "relation": "imports", @@ -119116,9 +119126,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository", - "target": "src_clinicservice_repository_tariffrepository_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_tariff" }, { "relation": "method", @@ -119126,9 +119136,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository_construct", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository_construct" }, { "relation": "method", @@ -119136,9 +119146,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository_findbyservice", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository_findbyservice" }, { "relation": "method", @@ -119146,9 +119156,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository_findbyuuid" }, { "relation": "method", @@ -119156,9 +119166,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository_findforserviceyear", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository_findforserviceyear" }, { "relation": "method", @@ -119166,9 +119176,9 @@ "source_file": "src/ClinicService/Repository/TariffRepository.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository", - "target": "repository_tariffrepository_tariffrepository_save", - "confidence_score": 1.0 + "target": "repository_tariffrepository_tariffrepository_save" }, { "relation": "references", @@ -119177,9 +119187,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository_construct", - "target": "src_clinicservice_repository_tariffrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_managerregistry" }, { "relation": "references_constant", @@ -119198,9 +119208,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository_findforserviceyear", - "target": "src_clinicservice_repository_tariffrepository_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_tariff" }, { "relation": "references", @@ -119209,9 +119219,9 @@ "source_location": "L36", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository_findbyuuid", - "target": "src_clinicservice_repository_tariffrepository_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_tariff" }, { "relation": "references", @@ -119220,9 +119230,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tariffrepository_tariffrepository_save", - "target": "src_clinicservice_repository_tariffrepository_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_repository_tariffrepository_php_tariff" }, { "relation": "contains", @@ -119230,9 +119240,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice", - "target": "service_tariffservice_tariffservice", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice" }, { "relation": "imports", @@ -119241,9 +119251,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice", - "target": "src_clinicservice_service_tariffservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_service_tariffservice_php_serviceitem" }, { "relation": "imports", @@ -119252,9 +119262,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice", - "target": "src_clinicservice_service_tariffservice_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_service_tariffservice_php_tariff" }, { "relation": "method", @@ -119262,9 +119272,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice", - "target": "service_tariffservice_tariffservice_construct", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice_construct" }, { "relation": "method", @@ -119272,9 +119282,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice", - "target": "service_tariffservice_tariffservice_currentjalaliyear", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice_currentjalaliyear" }, { "relation": "method", @@ -119282,9 +119292,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice", - "target": "service_tariffservice_tariffservice_resolveprice", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice_resolveprice" }, { "relation": "method", @@ -119292,9 +119302,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice", - "target": "service_tariffservice_tariffservice_upsert", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice_upsert" }, { "relation": "calls", @@ -119303,9 +119313,9 @@ "source_file": "src/ClinicService/Service/TariffService.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice_resolveprice", - "target": "service_tariffservice_tariffservice_currentjalaliyear", - "confidence_score": 1.0 + "target": "service_tariffservice_tariffservice_currentjalaliyear" }, { "relation": "references", @@ -119314,9 +119324,9 @@ "source_location": "L19", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice_resolveprice", - "target": "src_clinicservice_service_tariffservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_clinicservice_service_tariffservice_php_serviceitem" }, { "relation": "references", @@ -119325,9 +119335,9 @@ "source_location": "L30", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_tariffservice_tariffservice_upsert", - "target": "src_clinicservice_service_tariffservice_php_tariff", - "confidence_score": 1.0 + "target": "src_clinicservice_service_tariffservice_php_tariff" }, { "relation": "calls", @@ -119347,9 +119357,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -119357,9 +119367,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller", - "target": "controller_siteconfigcontroller_siteconfigcontroller", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller" }, { "relation": "imports", @@ -119368,9 +119378,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller", - "target": "src_config_controller_siteconfigcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_jsonresponse" }, { "relation": "imports", @@ -119379,9 +119389,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller", - "target": "src_config_controller_siteconfigcontroller_php_request", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_request" }, { "relation": "inherits", @@ -119389,9 +119399,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -119399,9 +119409,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller", - "target": "controller_siteconfigcontroller_siteconfigcontroller_construct", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller_construct" }, { "relation": "method", @@ -119409,9 +119419,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller", - "target": "controller_siteconfigcontroller_siteconfigcontroller_get", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller_get" }, { "relation": "method", @@ -119419,9 +119429,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller", - "target": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller_patch" }, { "relation": "method", @@ -119429,9 +119439,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller", - "target": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory" }, { "relation": "references", @@ -119440,9 +119450,9 @@ "source_location": "L53", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_get", - "target": "src_config_controller_siteconfigcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_jsonresponse" }, { "relation": "calls", @@ -119451,9 +119461,9 @@ "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "target": "controller_siteconfigcontroller_siteconfigcontroller_get", - "confidence_score": 1.0 + "target": "controller_siteconfigcontroller_siteconfigcontroller_get" }, { "relation": "references", @@ -119462,9 +119472,9 @@ "source_location": "L59", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "target": "src_config_controller_siteconfigcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_jsonresponse" }, { "relation": "references", @@ -119473,9 +119483,9 @@ "source_location": "L91", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", - "target": "src_config_controller_siteconfigcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_jsonresponse" }, { "relation": "references", @@ -119484,9 +119494,9 @@ "source_location": "L59", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "target": "src_config_controller_siteconfigcontroller_php_request", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_request" }, { "relation": "references", @@ -119495,9 +119505,9 @@ "source_location": "L59", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_siteconfigcontroller_siteconfigcontroller_patch", - "target": "src_config_controller_siteconfigcontroller_php_user", - "confidence_score": 1.0 + "target": "src_config_controller_siteconfigcontroller_php_user" }, { "relation": "contains", @@ -119505,9 +119515,9 @@ "source_file": "src/Config/Entity/SiteConfig.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_siteconfig", - "target": "entity_siteconfig_siteconfig", - "confidence_score": 1.0 + "target": "entity_siteconfig_siteconfig" }, { "relation": "method", @@ -119515,9 +119525,9 @@ "source_file": "src/Config/Entity/SiteConfig.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_siteconfig_siteconfig", - "target": "entity_siteconfig_siteconfig_construct", - "confidence_score": 1.0 + "target": "entity_siteconfig_siteconfig_construct" }, { "relation": "method", @@ -119525,9 +119535,9 @@ "source_file": "src/Config/Entity/SiteConfig.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_siteconfig_siteconfig", - "target": "entity_siteconfig_siteconfig_getkey", - "confidence_score": 1.0 + "target": "entity_siteconfig_siteconfig_getkey" }, { "relation": "method", @@ -119535,9 +119545,9 @@ "source_file": "src/Config/Entity/SiteConfig.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_siteconfig_siteconfig", - "target": "entity_siteconfig_siteconfig_getvalue", - "confidence_score": 1.0 + "target": "entity_siteconfig_siteconfig_getvalue" }, { "relation": "method", @@ -119545,9 +119555,9 @@ "source_file": "src/Config/Entity/SiteConfig.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_siteconfig_siteconfig", - "target": "entity_siteconfig_siteconfig_setvalue", - "confidence_score": 1.0 + "target": "entity_siteconfig_siteconfig_setvalue" }, { "relation": "calls", @@ -119578,9 +119588,9 @@ "source_location": "L31", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_siteconfig_siteconfig_setvalue", - "target": "src_config_entity_siteconfig_php_self", - "confidence_score": 1.0 + "target": "src_config_entity_siteconfig_php_self" }, { "relation": "contains", @@ -119588,9 +119598,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory", - "target": "entity_taxratehistory_taxratehistory", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory" }, { "relation": "imports", @@ -119599,9 +119609,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory", - "target": "src_config_entity_taxratehistory_php_user", - "confidence_score": 1.0 + "target": "src_config_entity_taxratehistory_php_user" }, { "relation": "method", @@ -119609,9 +119619,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_construct", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_construct" }, { "relation": "method", @@ -119619,9 +119629,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_getchangedat", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_getchangedat" }, { "relation": "method", @@ -119629,9 +119639,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_getchangedby", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_getchangedby" }, { "relation": "method", @@ -119639,9 +119649,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_getid", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_getid" }, { "relation": "method", @@ -119649,9 +119659,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_gettaxpercent", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_gettaxpercent" }, { "relation": "method", @@ -119659,9 +119669,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_isenabled", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_isenabled" }, { "relation": "method", @@ -119669,9 +119679,9 @@ "source_file": "src/Config/Entity/TaxRateHistory.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "entity_taxratehistory_taxratehistory_toarray", - "confidence_score": 1.0 + "target": "entity_taxratehistory_taxratehistory_toarray" }, { "relation": "references", @@ -119680,9 +119690,9 @@ "source_location": "L24", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory", - "target": "src_config_entity_taxratehistory_php_user", - "confidence_score": 1.0 + "target": "src_config_entity_taxratehistory_php_user" }, { "relation": "references", @@ -119691,9 +119701,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory_construct", - "target": "src_config_entity_taxratehistory_php_user", - "confidence_score": 1.0 + "target": "src_config_entity_taxratehistory_php_user" }, { "relation": "references", @@ -119702,9 +119712,9 @@ "source_location": "L42", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_taxratehistory_taxratehistory_getchangedby", - "target": "src_config_entity_taxratehistory_php_user", - "confidence_score": 1.0 + "target": "src_config_entity_taxratehistory_php_user" }, { "relation": "calls", @@ -119723,9 +119733,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository", - "target": "repository_siteconfigrepository_siteconfigrepository", - "confidence_score": 1.0 + "target": "repository_siteconfigrepository_siteconfigrepository" }, { "relation": "imports", @@ -119734,9 +119744,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository", - "target": "src_config_repository_siteconfigrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_config_repository_siteconfigrepository_php_managerregistry" }, { "relation": "method", @@ -119744,9 +119754,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository", - "target": "repository_siteconfigrepository_siteconfigrepository_construct", - "confidence_score": 1.0 + "target": "repository_siteconfigrepository_siteconfigrepository_construct" }, { "relation": "method", @@ -119754,9 +119764,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository", - "target": "repository_siteconfigrepository_siteconfigrepository_get", - "confidence_score": 1.0 + "target": "repository_siteconfigrepository_siteconfigrepository_get" }, { "relation": "method", @@ -119764,9 +119774,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository", - "target": "repository_siteconfigrepository_siteconfigrepository_getall", - "confidence_score": 1.0 + "target": "repository_siteconfigrepository_siteconfigrepository_getall" }, { "relation": "method", @@ -119774,9 +119784,9 @@ "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository", - "target": "repository_siteconfigrepository_siteconfigrepository_set", - "confidence_score": 1.0 + "target": "repository_siteconfigrepository_siteconfigrepository_set" }, { "relation": "references", @@ -119785,9 +119795,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_siteconfigrepository_siteconfigrepository_construct", - "target": "src_config_repository_siteconfigrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_config_repository_siteconfigrepository_php_managerregistry" }, { "relation": "contains", @@ -119795,9 +119805,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository", - "target": "repository_taxratehistoryrepository_taxratehistoryrepository", - "confidence_score": 1.0 + "target": "repository_taxratehistoryrepository_taxratehistoryrepository" }, { "relation": "imports", @@ -119806,9 +119816,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository", - "target": "src_config_repository_taxratehistoryrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_config_repository_taxratehistoryrepository_php_managerregistry" }, { "relation": "imports", @@ -119817,9 +119827,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository", - "target": "taxratehistory", - "confidence_score": 1.0 + "target": "taxratehistory" }, { "relation": "method", @@ -119827,9 +119837,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository_taxratehistoryrepository", - "target": "repository_taxratehistoryrepository_taxratehistoryrepository_construct", - "confidence_score": 1.0 + "target": "repository_taxratehistoryrepository_taxratehistoryrepository_construct" }, { "relation": "method", @@ -119837,9 +119847,9 @@ "source_file": "src/Config/Repository/TaxRateHistoryRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository_taxratehistoryrepository", - "target": "repository_taxratehistoryrepository_taxratehistoryrepository_save", - "confidence_score": 1.0 + "target": "repository_taxratehistoryrepository_taxratehistoryrepository_save" }, { "relation": "references", @@ -119848,9 +119858,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository_taxratehistoryrepository_construct", - "target": "src_config_repository_taxratehistoryrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_config_repository_taxratehistoryrepository_php_managerregistry" }, { "relation": "references_constant", @@ -119869,9 +119879,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_taxratehistoryrepository_taxratehistoryrepository_save", - "target": "taxratehistory", - "confidence_score": 1.0 + "target": "taxratehistory" }, { "relation": "imports", @@ -119880,9 +119890,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -119890,9 +119900,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller" }, { "relation": "imports", @@ -119901,9 +119911,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary" }, { "relation": "imports", @@ -119912,9 +119922,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "imports", @@ -119923,9 +119933,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "src_dashboard_controller_dashboardcontroller_php_request", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_request" }, { "relation": "imports", @@ -119934,9 +119944,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "inherits", @@ -119944,9 +119954,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -119954,9 +119964,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_clinic", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_clinic" }, { "relation": "method", @@ -119964,9 +119974,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_construct", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_construct" }, { "relation": "method", @@ -119974,9 +119984,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_doctor", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_doctor" }, { "relation": "method", @@ -119984,9 +119994,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L254", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_secretary", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_secretary" }, { "relation": "method", @@ -119994,9 +120004,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard" }, { "relation": "method", @@ -120004,9 +120014,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller", - "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard" }, { "relation": "calls", @@ -120026,9 +120036,9 @@ "source_location": "L40", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_clinic", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "references", @@ -120037,9 +120047,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_clinic", - "target": "src_dashboard_controller_dashboardcontroller_php_request", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_request" }, { "relation": "references", @@ -120048,9 +120058,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_clinic", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "references", @@ -120059,9 +120069,9 @@ "source_location": "L160", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_doctor", - "target": "src_dashboard_controller_dashboardcontroller_php_request", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_request" }, { "relation": "references", @@ -120070,9 +120080,9 @@ "source_location": "L160", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_doctor", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "references", @@ -120081,9 +120091,9 @@ "source_location": "L254", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretary", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "references", @@ -120092,9 +120102,9 @@ "source_location": "L338", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "references", @@ -120103,9 +120113,9 @@ "source_location": "L283", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_user", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_user" }, { "relation": "references", @@ -120114,9 +120124,9 @@ "source_location": "L160", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_doctor", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "references", @@ -120125,9 +120135,9 @@ "source_location": "L254", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretary", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "references", @@ -120136,9 +120146,9 @@ "source_location": "L338", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "references", @@ -120147,9 +120157,9 @@ "source_location": "L283", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_jsonresponse" }, { "relation": "calls", @@ -120169,9 +120179,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L268", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretary", - "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard" }, { "relation": "calls", @@ -120180,9 +120190,9 @@ "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretary", - "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "confidence_score": 1.0 + "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard" }, { "relation": "references", @@ -120191,9 +120201,9 @@ "source_location": "L283", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary" }, { "relation": "references", @@ -120202,9 +120212,9 @@ "source_location": "L338", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", - "target": "src_dashboard_controller_dashboardcontroller_php_clinic", - "confidence_score": 1.0 + "target": "src_dashboard_controller_dashboardcontroller_php_clinic" }, { "relation": "imports", @@ -120213,9 +120223,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -120223,9 +120233,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller" }, { "relation": "imports", @@ -120234,9 +120244,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "src_doctor_controller_doctorcontroller_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_doctor" }, { "relation": "imports", @@ -120245,9 +120255,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "src_doctor_controller_doctorcontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_doctoraddress" }, { "relation": "imports", @@ -120256,9 +120266,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "imports", @@ -120267,9 +120277,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "imports", @@ -120278,9 +120288,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "inherits", @@ -120288,9 +120298,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -120298,9 +120308,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_construct", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_construct" }, { "relation": "method", @@ -120308,9 +120318,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_create", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_create" }, { "relation": "method", @@ -120318,9 +120328,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L472", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_createaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_createaddress" }, { "relation": "method", @@ -120328,9 +120338,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_delete", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_delete" }, { "relation": "method", @@ -120338,9 +120348,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L628", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_deleteaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_deleteaddress" }, { "relation": "method", @@ -120348,9 +120358,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L792", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress" }, { "relation": "method", @@ -120358,9 +120368,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L719", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor" }, { "relation": "method", @@ -120368,9 +120378,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_list", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_list" }, { "relation": "method", @@ -120378,9 +120388,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L674", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_listaddresses", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_listaddresses" }, { "relation": "method", @@ -120388,9 +120398,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_show", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_show" }, { "relation": "method", @@ -120398,9 +120408,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L535", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_showaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_showaddress" }, { "relation": "method", @@ -120408,9 +120418,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_showforclinic", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_showforclinic" }, { "relation": "method", @@ -120418,9 +120428,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_update", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_update" }, { "relation": "method", @@ -120428,9 +120438,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L569", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_updateaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_updateaddress" }, { "relation": "method", @@ -120438,9 +120448,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L378", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller", - "target": "controller_doctorcontroller_doctorcontroller_uploadimage", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_uploadimage" }, { "relation": "calls", @@ -120449,9 +120459,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_create", - "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor" }, { "relation": "references", @@ -120460,9 +120470,9 @@ "source_location": "L47", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_create", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120471,9 +120481,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_create", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120482,9 +120492,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_create", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120493,9 +120503,9 @@ "source_location": "L472", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_createaddress", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120504,9 +120514,9 @@ "source_location": "L204", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_list", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120515,9 +120525,9 @@ "source_location": "L256", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_update", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120526,9 +120536,9 @@ "source_location": "L569", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_updateaddress", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120537,9 +120547,9 @@ "source_location": "L378", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_uploadimage", - "target": "src_doctor_controller_doctorcontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_request" }, { "relation": "references", @@ -120548,9 +120558,9 @@ "source_location": "L472", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_createaddress", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120559,9 +120569,9 @@ "source_location": "L628", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_deleteaddress", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120570,9 +120580,9 @@ "source_location": "L170", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_showforclinic", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120581,9 +120591,9 @@ "source_location": "L256", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_update", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120592,9 +120602,9 @@ "source_location": "L569", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_updateaddress", - "target": "src_doctor_controller_doctorcontroller_php_user", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_user" }, { "relation": "references", @@ -120603,9 +120613,9 @@ "source_location": "L472", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_createaddress", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120614,9 +120624,9 @@ "source_location": "L338", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_delete", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120625,9 +120635,9 @@ "source_location": "L628", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_deleteaddress", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120636,9 +120646,9 @@ "source_location": "L204", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_list", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120647,9 +120657,9 @@ "source_location": "L674", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_listaddresses", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120658,9 +120668,9 @@ "source_location": "L123", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_show", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120669,9 +120679,9 @@ "source_location": "L535", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_showaddress", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120680,9 +120690,9 @@ "source_location": "L170", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_showforclinic", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120691,9 +120701,9 @@ "source_location": "L256", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_update", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120702,9 +120712,9 @@ "source_location": "L569", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_updateaddress", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "references", @@ -120713,9 +120723,9 @@ "source_location": "L378", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_uploadimage", - "target": "src_doctor_controller_doctorcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_jsonresponse" }, { "relation": "calls", @@ -120724,9 +120734,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_update", - "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor" }, { "relation": "calls", @@ -120757,9 +120767,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_createaddress", - "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress" }, { "relation": "calls", @@ -120768,9 +120778,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L528", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_createaddress", - "target": "src_doctor_controller_doctorcontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_doctoraddress" }, { "relation": "calls", @@ -120779,9 +120789,9 @@ "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L622", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_updateaddress", - "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", - "confidence_score": 1.0 + "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress" }, { "relation": "references_constant", @@ -120810,9 +120820,9 @@ "source_location": "L719", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_hydratedoctor", - "target": "src_doctor_controller_doctorcontroller_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_doctor" }, { "relation": "references", @@ -120821,9 +120831,9 @@ "source_location": "L792", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorcontroller_doctorcontroller_hydrateaddress", - "target": "src_doctor_controller_doctorcontroller_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_controller_doctorcontroller_php_doctoraddress" }, { "relation": "imports", @@ -120832,9 +120842,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "contains", @@ -120842,9 +120852,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor", - "target": "entity_doctor_doctor", - "confidence_score": 1.0 + "target": "entity_doctor_doctor" }, { "relation": "imports", @@ -120853,9 +120863,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "imports", @@ -120864,9 +120874,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor", - "target": "src_doctor_entity_doctor_php_user", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_user" }, { "relation": "imports", @@ -120875,9 +120885,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor", - "target": "src_doctor_entity_doctor_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_weeklyschedule" }, { "relation": "method", @@ -120885,9 +120895,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L324", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_computeschedulefields", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_computeschedulefields" }, { "relation": "method", @@ -120895,9 +120905,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L341", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_computescheduleparts", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_computescheduleparts" }, { "relation": "method", @@ -120905,9 +120915,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_construct", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_construct" }, { "relation": "method", @@ -120915,9 +120925,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getactivitytime", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getactivitytime" }, { "relation": "method", @@ -120925,9 +120935,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L226", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getaddresses", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getaddresses" }, { "relation": "method", @@ -120935,9 +120945,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getcities", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getcities" }, { "relation": "method", @@ -120945,9 +120955,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getcreatedat", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getcreatedat" }, { "relation": "method", @@ -120955,9 +120965,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getdegree", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getdegree" }, { "relation": "method", @@ -120965,9 +120975,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getdoctorrate", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getdoctorrate" }, { "relation": "method", @@ -120975,9 +120985,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getdoctorratepercentage", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getdoctorratepercentage" }, { "relation": "method", @@ -120985,9 +120995,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L411", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getexperience", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getexperience" }, { "relation": "method", @@ -120995,9 +121005,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getgender", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getgender" }, { "relation": "method", @@ -121005,9 +121015,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getid" }, { "relation": "method", @@ -121015,9 +121025,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getimages", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getimages" }, { "relation": "method", @@ -121025,9 +121035,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getinfo", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getinfo" }, { "relation": "method", @@ -121035,9 +121045,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L154", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getmedicalsystemcode", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getmedicalsystemcode" }, { "relation": "method", @@ -121045,9 +121055,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getmobilenumber", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getmobilenumber" }, { "relation": "method", @@ -121055,9 +121065,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getname", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getname" }, { "relation": "method", @@ -121065,9 +121075,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L198", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getnotificationmobile", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getnotificationmobile" }, { "relation": "method", @@ -121075,9 +121085,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getprovinces", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getprovinces" }, { "relation": "method", @@ -121085,9 +121095,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getrepresentationid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getrepresentationid" }, { "relation": "method", @@ -121095,9 +121105,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L214", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getservices", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getservices" }, { "relation": "method", @@ -121105,9 +121115,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getsocialmedia", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getsocialmedia" }, { "relation": "method", @@ -121115,9 +121125,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getspecialties", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getspecialties" }, { "relation": "method", @@ -121125,9 +121135,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getupdatedat", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getupdatedat" }, { "relation": "method", @@ -121135,9 +121145,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getuser", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getuser" }, { "relation": "method", @@ -121145,9 +121155,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_getuuid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getuuid" }, { "relation": "method", @@ -121155,9 +121165,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_isactivedoctorappointment", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_isactivedoctorappointment" }, { "relation": "method", @@ -121165,9 +121175,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L296", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setactivedoctorappointment", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setactivedoctorappointment" }, { "relation": "method", @@ -121175,9 +121185,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L254", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setactivitytime", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setactivitytime" }, { "relation": "method", @@ -121185,9 +121195,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setdegree", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setdegree" }, { "relation": "method", @@ -121195,9 +121205,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L284", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setdoctorrate", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setdoctorrate" }, { "relation": "method", @@ -121205,9 +121215,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setdoctorratepercentage", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setdoctorratepercentage" }, { "relation": "method", @@ -121215,9 +121225,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L236", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setgender", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setgender" }, { "relation": "method", @@ -121225,9 +121235,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setimages", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setimages" }, { "relation": "method", @@ -121235,9 +121245,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L266", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setinfo", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setinfo" }, { "relation": "method", @@ -121245,9 +121255,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setmedicalsystemcode", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setmedicalsystemcode" }, { "relation": "method", @@ -121255,9 +121265,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setmobilenumber", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setmobilenumber" }, { "relation": "method", @@ -121265,9 +121275,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setname", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setname" }, { "relation": "method", @@ -121275,9 +121285,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setnotificationmobile", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setnotificationmobile" }, { "relation": "method", @@ -121285,9 +121295,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L302", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setrepresentationid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setrepresentationid" }, { "relation": "method", @@ -121295,9 +121305,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_setsocialmedia", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_setsocialmedia" }, { "relation": "method", @@ -121305,9 +121315,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L442", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_todetailarray", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_todetailarray" }, { "relation": "method", @@ -121315,9 +121325,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L419", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_tolistarray", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_tolistarray" }, { "relation": "method", @@ -121325,9 +121335,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L315", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "references", @@ -121336,9 +121346,9 @@ "source_location": "L117", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "references", @@ -121347,9 +121357,9 @@ "source_location": "L33", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctor_doctor", - "target": "src_doctor_entity_doctor_php_user", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_user" }, { "relation": "references", @@ -121358,9 +121368,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_construct", - "target": "src_doctor_entity_doctor_php_user", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_user" }, { "relation": "references", @@ -121369,9 +121379,9 @@ "source_location": "L142", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getuser", - "target": "src_doctor_entity_doctor_php_user", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_user" }, { "relation": "references", @@ -121380,9 +121390,9 @@ "source_location": "L226", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getaddresses", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "references", @@ -121391,9 +121401,9 @@ "source_location": "L222", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getcities", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "references", @@ -121402,9 +121412,9 @@ "source_location": "L218", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getprovinces", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "references", @@ -121413,9 +121423,9 @@ "source_location": "L214", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getservices", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "references", @@ -121424,9 +121434,9 @@ "source_location": "L210", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_getspecialties", - "target": "src_doctor_entity_doctor_php_collection", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_collection" }, { "relation": "calls", @@ -121446,9 +121456,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L457", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "entity_doctor_doctor_getid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getid" }, { "relation": "calls", @@ -121457,9 +121467,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L431", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_tolistarray", - "target": "entity_doctor_doctor_getid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getid" }, { "relation": "calls", @@ -121468,9 +121478,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L456", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "entity_doctor_doctor_getuuid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getuuid" }, { "relation": "calls", @@ -121479,9 +121489,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_tolistarray", - "target": "entity_doctor_doctor_getuuid", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getuuid" }, { "relation": "calls", @@ -121490,9 +121500,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L458", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "entity_doctor_doctor_getname", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getname" }, { "relation": "calls", @@ -121501,9 +121511,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L432", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_tolistarray", - "target": "entity_doctor_doctor_getname", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getname" }, { "relation": "references", @@ -121512,9 +121522,9 @@ "source_location": "L231", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setname", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121523,9 +121533,9 @@ "source_location": "L296", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setactivedoctorappointment", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121534,9 +121544,9 @@ "source_location": "L254", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setactivitytime", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121545,9 +121555,9 @@ "source_location": "L260", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdegree", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121556,9 +121566,9 @@ "source_location": "L284", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdoctorrate", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121567,9 +121577,9 @@ "source_location": "L290", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdoctorratepercentage", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121578,9 +121588,9 @@ "source_location": "L236", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setgender", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121589,9 +121599,9 @@ "source_location": "L272", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setimages", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121600,9 +121610,9 @@ "source_location": "L266", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setinfo", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121611,9 +121621,9 @@ "source_location": "L242", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setmedicalsystemcode", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121622,9 +121632,9 @@ "source_location": "L248", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setmobilenumber", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121633,9 +121643,9 @@ "source_location": "L308", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setnotificationmobile", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121644,9 +121654,9 @@ "source_location": "L302", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setrepresentationid", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "references", @@ -121655,9 +121665,9 @@ "source_location": "L278", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_setsocialmedia", - "target": "src_doctor_entity_doctor_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_self" }, { "relation": "calls", @@ -121666,9 +121676,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L239", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setgender", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121677,9 +121687,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setmedicalsystemcode", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121688,9 +121698,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L251", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setmobilenumber", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121699,9 +121709,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setactivitytime", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121710,9 +121720,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdegree", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121721,9 +121731,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L269", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setinfo", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121732,9 +121742,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setimages", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121743,9 +121753,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L281", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setsocialmedia", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121754,9 +121764,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L287", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdoctorrate", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121765,9 +121775,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setdoctorratepercentage", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121776,9 +121786,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L299", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setactivedoctorappointment", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121787,9 +121797,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L305", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setrepresentationid", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121798,9 +121808,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L311", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_setnotificationmobile", - "target": "entity_doctor_doctor_touch", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_touch" }, { "relation": "calls", @@ -121820,9 +121830,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L326", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_computeschedulefields", - "target": "entity_doctor_doctor_computescheduleparts", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_computescheduleparts" }, { "relation": "references", @@ -121831,9 +121841,9 @@ "source_location": "L324", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_computeschedulefields", - "target": "src_doctor_entity_doctor_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_weeklyschedule" }, { "relation": "calls", @@ -121842,9 +121852,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L444", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "entity_doctor_doctor_computeschedulefields", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_computeschedulefields" }, { "relation": "calls", @@ -121853,9 +121863,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L421", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_tolistarray", - "target": "entity_doctor_doctor_computeschedulefields", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_computeschedulefields" }, { "relation": "references", @@ -121864,9 +121874,9 @@ "source_location": "L341", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_computescheduleparts", - "target": "src_doctor_entity_doctor_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_weeklyschedule" }, { "relation": "references", @@ -121875,9 +121885,9 @@ "source_location": "L442", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "src_doctor_entity_doctor_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_weeklyschedule" }, { "relation": "references", @@ -121886,9 +121896,9 @@ "source_location": "L419", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctor_doctor_tolistarray", - "target": "src_doctor_entity_doctor_php_weeklyschedule", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctor_php_weeklyschedule" }, { "relation": "calls", @@ -121919,9 +121929,9 @@ "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L450", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctor_doctor_todetailarray", - "target": "entity_doctor_doctor_getexperience", - "confidence_score": 1.0 + "target": "entity_doctor_doctor_getexperience" }, { "relation": "contains", @@ -121929,9 +121939,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress", - "target": "entity_doctoraddress_doctoraddress", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress" }, { "relation": "imports", @@ -121940,9 +121950,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress", - "target": "src_doctor_entity_doctoraddress_php_city", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_city" }, { "relation": "imports", @@ -121951,9 +121961,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress", - "target": "src_doctor_entity_doctoraddress_php_province", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_province" }, { "relation": "method", @@ -121961,9 +121971,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_construct", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_construct" }, { "relation": "method", @@ -121971,9 +121981,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_forclinic", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_forclinic" }, { "relation": "method", @@ -121981,9 +121991,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_fordoctor", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_fordoctor" }, { "relation": "method", @@ -121991,9 +122001,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getaddress", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getaddress" }, { "relation": "method", @@ -122001,9 +122011,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getcity", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getcity" }, { "relation": "method", @@ -122011,9 +122021,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getclinicid", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getclinicid" }, { "relation": "method", @@ -122021,9 +122031,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getdoctor", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getdoctor" }, { "relation": "method", @@ -122031,9 +122041,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getid", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getid" }, { "relation": "method", @@ -122041,9 +122051,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getlatitude", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getlatitude" }, { "relation": "method", @@ -122051,9 +122061,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getlongitude", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getlongitude" }, { "relation": "method", @@ -122061,9 +122071,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getname", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getname" }, { "relation": "method", @@ -122071,9 +122081,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getprovince", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getprovince" }, { "relation": "method", @@ -122081,9 +122091,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_gettelephone", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_gettelephone" }, { "relation": "method", @@ -122091,9 +122101,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_gettype", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_gettype" }, { "relation": "method", @@ -122101,9 +122111,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_getuuid", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getuuid" }, { "relation": "method", @@ -122111,9 +122121,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setaddress", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setaddress" }, { "relation": "method", @@ -122121,9 +122131,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setcity", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setcity" }, { "relation": "method", @@ -122131,9 +122141,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setlatitude", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setlatitude" }, { "relation": "method", @@ -122141,9 +122151,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setlongitude", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setlongitude" }, { "relation": "method", @@ -122151,9 +122161,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setname", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setname" }, { "relation": "method", @@ -122161,9 +122171,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_setprovince", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_setprovince" }, { "relation": "method", @@ -122171,9 +122181,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_settelephone", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_settelephone" }, { "relation": "method", @@ -122181,9 +122191,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_toarray", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_toarray" }, { "relation": "method", @@ -122191,9 +122201,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "references", @@ -122202,9 +122212,9 @@ "source_location": "L52", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "src_doctor_entity_doctoraddress_php_city", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_city" }, { "relation": "references", @@ -122213,9 +122223,9 @@ "source_location": "L27", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "src_doctor_entity_doctoraddress_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_doctor" }, { "relation": "references", @@ -122224,9 +122234,9 @@ "source_location": "L56", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress", - "target": "src_doctor_entity_doctoraddress_php_province", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_province" }, { "relation": "references", @@ -122235,9 +122245,9 @@ "source_location": "L73", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_fordoctor", - "target": "src_doctor_entity_doctoraddress_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_doctor" }, { "relation": "references", @@ -122246,9 +122256,9 @@ "source_location": "L91", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_getdoctor", - "target": "src_doctor_entity_doctoraddress_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_doctor" }, { "relation": "references", @@ -122257,9 +122267,9 @@ "source_location": "L99", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_getcity", - "target": "src_doctor_entity_doctoraddress_php_city", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_city" }, { "relation": "references", @@ -122268,9 +122278,9 @@ "source_location": "L107", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setcity", - "target": "src_doctor_entity_doctoraddress_php_city", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_city" }, { "relation": "references", @@ -122279,9 +122289,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_getprovince", - "target": "src_doctor_entity_doctoraddress_php_province", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_province" }, { "relation": "references", @@ -122290,9 +122300,9 @@ "source_location": "L108", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setprovince", - "target": "src_doctor_entity_doctoraddress_php_province", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_province" }, { "relation": "calls", @@ -122312,9 +122322,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_fordoctor", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122323,9 +122333,9 @@ "source_location": "L81", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_forclinic", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122334,9 +122344,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setaddress", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122345,9 +122355,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setcity", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122356,9 +122366,9 @@ "source_location": "L105", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setlatitude", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122367,9 +122377,9 @@ "source_location": "L106", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setlongitude", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122378,9 +122388,9 @@ "source_location": "L102", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setname", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122389,9 +122399,9 @@ "source_location": "L108", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setprovince", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "references", @@ -122400,9 +122410,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_settelephone", - "target": "src_doctor_entity_doctoraddress_php_self", - "confidence_score": 1.0 + "target": "src_doctor_entity_doctoraddress_php_self" }, { "relation": "calls", @@ -122411,9 +122421,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_toarray", - "target": "entity_doctoraddress_doctoraddress_getid", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getid" }, { "relation": "calls", @@ -122422,9 +122432,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_toarray", - "target": "entity_doctoraddress_doctoraddress_getname", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_getname" }, { "relation": "calls", @@ -122433,9 +122443,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setaddress", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122444,9 +122454,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_settelephone", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122455,9 +122465,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setlatitude", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122466,9 +122476,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setlongitude", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122477,9 +122487,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setcity", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122488,9 +122498,9 @@ "source_file": "src/Doctor/Entity/DoctorAddress.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctoraddress_doctoraddress_setprovince", - "target": "entity_doctoraddress_doctoraddress_touch", - "confidence_score": 1.0 + "target": "entity_doctoraddress_doctoraddress_touch" }, { "relation": "calls", @@ -122509,9 +122519,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository" }, { "relation": "imports", @@ -122520,9 +122530,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository", - "target": "src_doctor_repository_doctoraddressrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctor" }, { "relation": "imports", @@ -122531,9 +122541,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository", - "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress" }, { "relation": "imports", @@ -122542,9 +122552,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository", - "target": "src_doctor_repository_doctoraddressrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_managerregistry" }, { "relation": "method", @@ -122552,9 +122562,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_construct", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_construct" }, { "relation": "method", @@ -122562,9 +122572,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_countbyclinic", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_countbyclinic" }, { "relation": "method", @@ -122572,9 +122582,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_findavailablefordoctor", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_findavailablefordoctor" }, { "relation": "method", @@ -122582,9 +122592,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_findbyuuidandclinic", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_findbyuuidandclinic" }, { "relation": "method", @@ -122592,9 +122602,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_findonebyclinic", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_findonebyclinic" }, { "relation": "method", @@ -122602,9 +122612,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_remove", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_remove" }, { "relation": "method", @@ -122612,9 +122622,9 @@ "source_file": "src/Doctor/Repository/DoctorAddressRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository", - "target": "repository_doctoraddressrepository_doctoraddressrepository_save", - "confidence_score": 1.0 + "target": "repository_doctoraddressrepository_doctoraddressrepository_save" }, { "relation": "references_constant", @@ -122633,9 +122643,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_construct", - "target": "src_doctor_repository_doctoraddressrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_managerregistry" }, { "relation": "references", @@ -122644,9 +122654,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_save", - "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress" }, { "relation": "references_constant", @@ -122665,9 +122675,9 @@ "source_location": "L33", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_findbyuuidandclinic", - "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress" }, { "relation": "references", @@ -122676,9 +122686,9 @@ "source_location": "L44", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_findonebyclinic", - "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress" }, { "relation": "references", @@ -122687,9 +122697,9 @@ "source_location": "L25", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_remove", - "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctoraddress" }, { "relation": "references", @@ -122698,9 +122708,9 @@ "source_location": "L65", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctoraddressrepository_doctoraddressrepository_findavailablefordoctor", - "target": "src_doctor_repository_doctoraddressrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctoraddressrepository_php_doctor" }, { "relation": "contains", @@ -122708,9 +122718,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository" }, { "relation": "imports", @@ -122719,9 +122729,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "imports", @@ -122730,9 +122740,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository", - "target": "src_doctor_repository_doctorrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_managerregistry" }, { "relation": "imports", @@ -122741,9 +122751,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository", - "target": "src_doctor_repository_doctorrepository_php_user", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_user" }, { "relation": "method", @@ -122751,9 +122761,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_construct", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_construct" }, { "relation": "method", @@ -122761,9 +122771,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_doctoridsviacliniclocation", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_doctoridsviacliniclocation" }, { "relation": "method", @@ -122771,9 +122781,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_findbyclinicwithfilters", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_findbyclinicwithfilters" }, { "relation": "method", @@ -122781,9 +122791,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_findbyuser" }, { "relation": "method", @@ -122791,9 +122801,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_findbyuuid" }, { "relation": "method", @@ -122801,9 +122811,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_findonebymobile", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_findonebymobile" }, { "relation": "method", @@ -122811,9 +122821,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_findwithfilters", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_findwithfilters" }, { "relation": "method", @@ -122821,9 +122831,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_remove", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_remove" }, { "relation": "method", @@ -122831,9 +122841,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository", - "target": "repository_doctorrepository_doctorrepository_save", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_save" }, { "relation": "references_constant", @@ -122852,9 +122862,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_construct", - "target": "src_doctor_repository_doctorrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_managerregistry" }, { "relation": "references", @@ -122863,9 +122873,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_findbyuuid", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "references", @@ -122874,9 +122884,9 @@ "source_location": "L26", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_findbyuser", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "references", @@ -122885,9 +122895,9 @@ "source_location": "L31", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_findonebymobile", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "references", @@ -122896,9 +122906,9 @@ "source_location": "L189", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_remove", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "references", @@ -122907,9 +122917,9 @@ "source_location": "L181", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_save", - "target": "src_doctor_repository_doctorrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_doctor" }, { "relation": "references", @@ -122918,9 +122928,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_findbyuser", - "target": "src_doctor_repository_doctorrepository_php_user", - "confidence_score": 1.0 + "target": "src_doctor_repository_doctorrepository_php_user" }, { "relation": "calls", @@ -122929,9 +122939,9 @@ "source_file": "src/Doctor/Repository/DoctorRepository.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorrepository_doctorrepository_findwithfilters", - "target": "repository_doctorrepository_doctorrepository_doctoridsviacliniclocation", - "confidence_score": 1.0 + "target": "repository_doctorrepository_doctorrepository_doctoridsviacliniclocation" }, { "relation": "imports", @@ -122940,9 +122950,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -122950,9 +122960,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller" }, { "relation": "imports", @@ -122961,9 +122971,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "imports", @@ -122972,9 +122982,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "imports", @@ -122983,9 +122993,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller", - "target": "src_doctorservice_controller_doctorservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_request" }, { "relation": "inherits", @@ -122993,9 +123003,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -123003,9 +123013,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_adminlist" }, { "relation": "method", @@ -123013,9 +123023,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_construct", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_construct" }, { "relation": "method", @@ -123023,9 +123033,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_create", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_create" }, { "relation": "method", @@ -123033,9 +123043,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_delete", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_delete" }, { "relation": "method", @@ -123043,9 +123053,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_list", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_list" }, { "relation": "method", @@ -123053,9 +123063,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify" }, { "relation": "method", @@ -123063,9 +123073,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller", - "target": "controller_doctorservicecontroller_doctorservicecontroller_update", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_update" }, { "relation": "references", @@ -123074,9 +123084,9 @@ "source_location": "L24", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_list", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -123085,9 +123095,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_list", - "target": "src_doctorservice_controller_doctorservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_request" }, { "relation": "references", @@ -123096,9 +123106,9 @@ "source_location": "L98", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", - "target": "src_doctorservice_controller_doctorservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_request" }, { "relation": "references", @@ -123107,9 +123117,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_create", - "target": "src_doctorservice_controller_doctorservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_request" }, { "relation": "references", @@ -123118,9 +123128,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_update", - "target": "src_doctorservice_controller_doctorservicecontroller_php_request", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_request" }, { "relation": "references", @@ -123129,9 +123139,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -123140,9 +123150,9 @@ "source_location": "L37", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_create", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -123151,9 +123161,9 @@ "source_location": "L85", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_delete", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "references", @@ -123162,9 +123172,9 @@ "source_location": "L62", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_update", - "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse" }, { "relation": "calls", @@ -123173,9 +123183,9 @@ "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_doctorservicecontroller_doctorservicecontroller_create", - "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify", - "confidence_score": 1.0 + "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify" }, { "relation": "calls", @@ -123194,9 +123204,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice", - "target": "entity_doctorservice_doctorservice", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice" }, { "relation": "imports", @@ -123205,9 +123215,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice", - "target": "src_doctorservice_entity_doctorservice_php_specialty", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_specialty" }, { "relation": "method", @@ -123215,9 +123225,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_construct", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_construct" }, { "relation": "method", @@ -123225,9 +123235,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getid", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getid" }, { "relation": "method", @@ -123235,9 +123245,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getname", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getname" }, { "relation": "method", @@ -123245,9 +123255,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getslug", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getslug" }, { "relation": "method", @@ -123255,9 +123265,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getspecialty", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getspecialty" }, { "relation": "method", @@ -123265,9 +123275,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getstatus", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getstatus" }, { "relation": "method", @@ -123275,9 +123285,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getuuid", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getuuid" }, { "relation": "method", @@ -123285,9 +123295,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_getweight", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_getweight" }, { "relation": "method", @@ -123295,9 +123305,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_setname", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_setname" }, { "relation": "method", @@ -123305,9 +123315,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_setslug", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_setslug" }, { "relation": "method", @@ -123315,9 +123325,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_setspecialty", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_setspecialty" }, { "relation": "method", @@ -123325,9 +123335,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_setstatus", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_setstatus" }, { "relation": "method", @@ -123335,9 +123345,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_setweight", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_setweight" }, { "relation": "method", @@ -123345,9 +123355,9 @@ "source_file": "src/DoctorService/Entity/DoctorService.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "entity_doctorservice_doctorservice_toarray", - "confidence_score": 1.0 + "target": "entity_doctorservice_doctorservice_toarray" }, { "relation": "references", @@ -123356,9 +123366,9 @@ "source_location": "L37", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice", - "target": "src_doctorservice_entity_doctorservice_php_specialty", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_specialty" }, { "relation": "references", @@ -123367,9 +123377,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_construct", - "target": "src_doctorservice_entity_doctorservice_php_specialty", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_specialty" }, { "relation": "references", @@ -123378,9 +123388,9 @@ "source_location": "L55", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_getspecialty", - "target": "src_doctorservice_entity_doctorservice_php_specialty", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_specialty" }, { "relation": "references", @@ -123389,9 +123399,9 @@ "source_location": "L61", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setspecialty", - "target": "src_doctorservice_entity_doctorservice_php_specialty", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_specialty" }, { "relation": "references", @@ -123400,9 +123410,9 @@ "source_location": "L57", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setname", - "target": "src_doctorservice_entity_doctorservice_php_self", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_self" }, { "relation": "references", @@ -123411,9 +123421,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setslug", - "target": "src_doctorservice_entity_doctorservice_php_self", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_self" }, { "relation": "references", @@ -123422,9 +123432,9 @@ "source_location": "L61", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setspecialty", - "target": "src_doctorservice_entity_doctorservice_php_self", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_self" }, { "relation": "references", @@ -123433,9 +123443,9 @@ "source_location": "L59", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setstatus", - "target": "src_doctorservice_entity_doctorservice_php_self", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_self" }, { "relation": "references", @@ -123444,9 +123454,9 @@ "source_location": "L60", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorservice_doctorservice_setweight", - "target": "src_doctorservice_entity_doctorservice_php_self", - "confidence_score": 1.0 + "target": "src_doctorservice_entity_doctorservice_php_self" }, { "relation": "imports", @@ -123455,9 +123465,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "contains", @@ -123465,9 +123475,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository", - "target": "repository_doctorservicerepository_doctorservicerepository", - "confidence_score": 1.0 + "target": "repository_doctorservicerepository_doctorservicerepository" }, { "relation": "imports", @@ -123476,9 +123486,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository", - "target": "src_doctorservice_repository_doctorservicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctorservice_repository_doctorservicerepository_php_managerregistry" }, { "relation": "method", @@ -123486,9 +123496,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository", - "target": "repository_doctorservicerepository_doctorservicerepository_construct", - "confidence_score": 1.0 + "target": "repository_doctorservicerepository_doctorservicerepository_construct" }, { "relation": "method", @@ -123496,9 +123506,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository", - "target": "repository_doctorservicerepository_doctorservicerepository_findactive", - "confidence_score": 1.0 + "target": "repository_doctorservicerepository_doctorservicerepository_findactive" }, { "relation": "method", @@ -123506,9 +123516,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository", - "target": "repository_doctorservicerepository_doctorservicerepository_remove", - "confidence_score": 1.0 + "target": "repository_doctorservicerepository_doctorservicerepository_remove" }, { "relation": "method", @@ -123516,9 +123526,9 @@ "source_file": "src/DoctorService/Repository/DoctorServiceRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository", - "target": "repository_doctorservicerepository_doctorservicerepository_save", - "confidence_score": 1.0 + "target": "repository_doctorservicerepository_doctorservicerepository_save" }, { "relation": "references_constant", @@ -123537,9 +123547,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository_construct", - "target": "src_doctorservice_repository_doctorservicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_doctorservice_repository_doctorservicerepository_php_managerregistry" }, { "relation": "references", @@ -123548,9 +123558,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository_save", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "references", @@ -123559,9 +123569,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorservicerepository_doctorservicerepository_remove", - "target": "doctorservice", - "confidence_score": 1.0 + "target": "doctorservice" }, { "relation": "imports", @@ -123570,9 +123580,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -123580,9 +123590,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller" }, { "relation": "imports", @@ -123591,9 +123601,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "doctorinsurance", - "confidence_score": 1.0 + "target": "doctorinsurance" }, { "relation": "imports", @@ -123602,9 +123612,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "entityinsurancepricing", - "confidence_score": 1.0 + "target": "entityinsurancepricing" }, { "relation": "imports", @@ -123613,9 +123623,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "imports", @@ -123624,9 +123634,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "imports", @@ -123635,9 +123645,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "inherits", @@ -123645,9 +123655,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -123655,9 +123665,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L327", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance" }, { "relation": "method", @@ -123665,9 +123675,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L459", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance" }, { "relation": "method", @@ -123675,9 +123685,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_adminlist", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_adminlist" }, { "relation": "method", @@ -123685,9 +123695,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_construct", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_construct" }, { "relation": "method", @@ -123695,9 +123705,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_create", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_create" }, { "relation": "method", @@ -123705,9 +123715,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L381", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance" }, { "relation": "method", @@ -123715,9 +123725,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_delete", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_delete" }, { "relation": "method", @@ -123725,9 +123735,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L532", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance" }, { "relation": "method", @@ -123735,9 +123745,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L215", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing" }, { "relation": "method", @@ -123745,9 +123755,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_list", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_list" }, { "relation": "method", @@ -123755,9 +123765,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L396", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_listservicecoverage", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_listservicecoverage" }, { "relation": "method", @@ -123765,9 +123775,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L301", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_listtenantinsurances" }, { "relation": "method", @@ -123775,9 +123785,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "method", @@ -123785,9 +123795,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing" }, { "relation": "method", @@ -123795,9 +123805,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L418", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_setservicecoverage", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_setservicecoverage" }, { "relation": "method", @@ -123805,9 +123815,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L499", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance" }, { "relation": "method", @@ -123815,9 +123825,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_update", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_update" }, { "relation": "method", @@ -123825,9 +123835,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L510", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance" }, { "relation": "method", @@ -123835,9 +123845,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L355", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance" }, { "relation": "method", @@ -123845,9 +123855,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_uploadlogo", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_uploadlogo" }, { "relation": "method", @@ -123855,9 +123865,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller", - "target": "controller_insurancecontroller_insurancecontroller_upsertpricing", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_upsertpricing" }, { "relation": "calls", @@ -123866,9 +123876,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123877,9 +123887,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L385", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123888,9 +123898,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123899,9 +123909,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L400", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123910,9 +123920,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L305", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "references", @@ -123921,9 +123931,9 @@ "source_location": "L48", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_resolveentity", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "calls", @@ -123932,9 +123942,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123943,9 +123953,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "calls", @@ -123954,9 +123964,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L359", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", - "target": "controller_insurancecontroller_insurancecontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_resolveentity" }, { "relation": "references", @@ -123965,9 +123975,9 @@ "source_location": "L327", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -123976,9 +123986,9 @@ "source_location": "L459", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -123987,9 +123997,9 @@ "source_location": "L381", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -123998,9 +124008,9 @@ "source_location": "L532", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124009,9 +124019,9 @@ "source_location": "L215", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124020,9 +124030,9 @@ "source_location": "L396", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124031,9 +124041,9 @@ "source_location": "L301", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124042,9 +124052,9 @@ "source_location": "L253", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124053,9 +124063,9 @@ "source_location": "L418", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124064,9 +124074,9 @@ "source_location": "L510", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124075,9 +124085,9 @@ "source_location": "L355", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_user", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_user" }, { "relation": "references", @@ -124086,9 +124096,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_list", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124097,9 +124107,9 @@ "source_location": "L63", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_list", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124108,9 +124118,9 @@ "source_location": "L327", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124119,9 +124129,9 @@ "source_location": "L459", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124130,9 +124140,9 @@ "source_location": "L138", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_adminlist", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124141,9 +124151,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_create", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124152,9 +124162,9 @@ "source_location": "L253", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124163,9 +124173,9 @@ "source_location": "L418", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124174,9 +124184,9 @@ "source_location": "L103", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_update", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124185,9 +124195,9 @@ "source_location": "L510", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124196,9 +124206,9 @@ "source_location": "L355", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124207,9 +124217,9 @@ "source_location": "L167", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_uploadlogo", - "target": "src_insurance_controller_insurancecontroller_php_request", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_request" }, { "relation": "references", @@ -124218,9 +124228,9 @@ "source_location": "L327", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124229,9 +124239,9 @@ "source_location": "L459", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124240,9 +124250,9 @@ "source_location": "L138", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_adminlist", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124251,9 +124261,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_create", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124262,9 +124272,9 @@ "source_location": "L381", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124273,9 +124283,9 @@ "source_location": "L125", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_delete", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124284,9 +124294,9 @@ "source_location": "L532", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124295,9 +124305,9 @@ "source_location": "L215", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124306,9 +124316,9 @@ "source_location": "L396", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124317,9 +124327,9 @@ "source_location": "L301", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124328,9 +124338,9 @@ "source_location": "L253", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124339,9 +124349,9 @@ "source_location": "L418", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124350,9 +124360,9 @@ "source_location": "L499", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124361,9 +124371,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_update", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124372,9 +124382,9 @@ "source_location": "L510", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124383,9 +124393,9 @@ "source_location": "L355", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "references", @@ -124394,9 +124404,9 @@ "source_location": "L167", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_uploadlogo", - "target": "src_insurance_controller_insurancecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_insurance_controller_insurancecontroller_php_jsonresponse" }, { "relation": "calls", @@ -124416,9 +124426,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L285", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing" }, { "relation": "calls", @@ -124427,9 +124437,9 @@ "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L265", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", - "target": "controller_insurancecontroller_insurancecontroller_upsertpricing", - "confidence_score": 1.0 + "target": "controller_insurancecontroller_insurancecontroller_upsertpricing" }, { "relation": "contains", @@ -124437,9 +124447,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance" }, { "relation": "imports", @@ -124448,9 +124458,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance", - "target": "src_insurance_entity_doctorinsurance_php_doctor", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_doctor" }, { "relation": "method", @@ -124458,9 +124468,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_construct", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_construct" }, { "relation": "method", @@ -124468,9 +124478,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_getdoctor", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_getdoctor" }, { "relation": "method", @@ -124478,9 +124488,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_getid", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_getid" }, { "relation": "method", @@ -124488,9 +124498,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_getinsurance", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_getinsurance" }, { "relation": "method", @@ -124498,9 +124508,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_getprice", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_getprice" }, { "relation": "method", @@ -124508,9 +124518,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_setprice", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_setprice" }, { "relation": "method", @@ -124518,9 +124528,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "entity_doctorinsurance_doctorinsurance_toarray", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_toarray" }, { "relation": "references", @@ -124529,9 +124539,9 @@ "source_location": "L20", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "src_insurance_entity_doctorinsurance_php_doctor", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_doctor" }, { "relation": "references", @@ -124540,9 +124550,9 @@ "source_location": "L24", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance", - "target": "src_insurance_entity_doctorinsurance_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_insurance" }, { "relation": "references", @@ -124551,9 +124561,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_construct", - "target": "src_insurance_entity_doctorinsurance_php_doctor", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_doctor" }, { "relation": "references", @@ -124562,9 +124572,9 @@ "source_location": "L38", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_getdoctor", - "target": "src_insurance_entity_doctorinsurance_php_doctor", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_doctor" }, { "relation": "references", @@ -124573,9 +124583,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_construct", - "target": "src_insurance_entity_doctorinsurance_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_insurance" }, { "relation": "references", @@ -124584,9 +124594,9 @@ "source_location": "L39", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_getinsurance", - "target": "src_insurance_entity_doctorinsurance_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_insurance" }, { "relation": "calls", @@ -124595,9 +124605,9 @@ "source_file": "src/Insurance/Entity/DoctorInsurance.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_toarray", - "target": "entity_doctorinsurance_doctorinsurance_getid", - "confidence_score": 1.0 + "target": "entity_doctorinsurance_doctorinsurance_getid" }, { "relation": "references", @@ -124606,9 +124616,9 @@ "source_location": "L42", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorinsurance_doctorinsurance_setprice", - "target": "src_insurance_entity_doctorinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_doctorinsurance_php_self" }, { "relation": "contains", @@ -124616,9 +124626,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing" }, { "relation": "method", @@ -124626,9 +124636,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_construct", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_construct" }, { "relation": "method", @@ -124636,9 +124646,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_getentityid", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_getentityid" }, { "relation": "method", @@ -124646,9 +124656,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_getentitytype", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_getentitytype" }, { "relation": "method", @@ -124656,9 +124666,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_getid", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_getid" }, { "relation": "method", @@ -124666,9 +124676,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_getinsuranceid", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_getinsuranceid" }, { "relation": "method", @@ -124676,9 +124686,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_getpatientsharerials", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_getpatientsharerials" }, { "relation": "method", @@ -124686,9 +124696,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_isfreevisit", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_isfreevisit" }, { "relation": "method", @@ -124696,9 +124706,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_setpatientsharerials", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_setpatientsharerials" }, { "relation": "method", @@ -124706,9 +124716,9 @@ "source_file": "src/Insurance/Entity/EntityInsurancePricing.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing", - "target": "entity_entityinsurancepricing_entityinsurancepricing_toarray", - "confidence_score": 1.0 + "target": "entity_entityinsurancepricing_entityinsurancepricing_toarray" }, { "relation": "calls", @@ -124739,9 +124749,9 @@ "source_location": "L54", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_entityinsurancepricing_entityinsurancepricing_setpatientsharerials", - "target": "src_insurance_entity_entityinsurancepricing_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_entityinsurancepricing_php_self" }, { "relation": "contains", @@ -124749,9 +124759,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance", - "target": "entity_insurance_insurance", - "confidence_score": 1.0 + "target": "entity_insurance_insurance" }, { "relation": "imports", @@ -124760,9 +124770,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance", - "target": "src_insurance_entity_insurance_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_insurancetype" }, { "relation": "method", @@ -124770,9 +124780,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_construct", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_construct" }, { "relation": "method", @@ -124780,9 +124790,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_getid", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_getid" }, { "relation": "method", @@ -124790,9 +124800,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_getlogourl", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_getlogourl" }, { "relation": "method", @@ -124800,9 +124810,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_getname", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_getname" }, { "relation": "method", @@ -124810,9 +124820,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_getstatus", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_getstatus" }, { "relation": "method", @@ -124820,9 +124830,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_gettype", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_gettype" }, { "relation": "method", @@ -124830,9 +124840,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_getuuid", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_getuuid" }, { "relation": "method", @@ -124840,9 +124850,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_setlogourl", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_setlogourl" }, { "relation": "method", @@ -124850,9 +124860,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_setname", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_setname" }, { "relation": "method", @@ -124860,9 +124870,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_setstatus", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_setstatus" }, { "relation": "method", @@ -124870,9 +124880,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_settype", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_settype" }, { "relation": "method", @@ -124880,9 +124890,9 @@ "source_file": "src/Insurance/Entity/Insurance.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "entity_insurance_insurance_toarray", - "confidence_score": 1.0 + "target": "entity_insurance_insurance_toarray" }, { "relation": "references", @@ -124891,9 +124901,9 @@ "source_location": "L27", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_insurance_insurance", - "target": "src_insurance_entity_insurance_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_insurancetype" }, { "relation": "references", @@ -124902,9 +124912,9 @@ "source_location": "L36", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_construct", - "target": "src_insurance_entity_insurance_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_insurancetype" }, { "relation": "references", @@ -124913,9 +124923,9 @@ "source_location": "L46", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_gettype", - "target": "src_insurance_entity_insurance_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_insurancetype" }, { "relation": "references", @@ -124924,9 +124934,9 @@ "source_location": "L51", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_settype", - "target": "src_insurance_entity_insurance_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_insurancetype" }, { "relation": "references", @@ -124935,9 +124945,9 @@ "source_location": "L50", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_setname", - "target": "src_insurance_entity_insurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_self" }, { "relation": "references", @@ -124946,9 +124956,9 @@ "source_location": "L52", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_setlogourl", - "target": "src_insurance_entity_insurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_self" }, { "relation": "references", @@ -124957,9 +124967,9 @@ "source_location": "L53", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_setstatus", - "target": "src_insurance_entity_insurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_self" }, { "relation": "references", @@ -124968,9 +124978,9 @@ "source_location": "L51", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_insurance_insurance_settype", - "target": "src_insurance_entity_insurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_insurance_php_self" }, { "relation": "contains", @@ -124978,9 +124988,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance" }, { "relation": "method", @@ -124988,9 +124998,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_construct", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_construct" }, { "relation": "method", @@ -124998,9 +125008,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getannualceilingrials", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getannualceilingrials" }, { "relation": "method", @@ -125008,9 +125018,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getcoveragepercent", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getcoveragepercent" }, { "relation": "method", @@ -125018,9 +125028,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_geteffectivefrom", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_geteffectivefrom" }, { "relation": "method", @@ -125028,9 +125038,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_geteffectiveto", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_geteffectiveto" }, { "relation": "method", @@ -125038,9 +125048,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getentityid", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getentityid" }, { "relation": "method", @@ -125048,9 +125058,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getentitytype", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getentitytype" }, { "relation": "method", @@ -125058,9 +125068,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getfranchiserials", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getfranchiserials" }, { "relation": "method", @@ -125068,9 +125078,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getid", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getid" }, { "relation": "method", @@ -125078,9 +125088,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getinsuranceid", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getinsuranceid" }, { "relation": "method", @@ -125088,9 +125098,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getuuid", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getuuid" }, { "relation": "method", @@ -125098,9 +125108,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_getversion", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_getversion" }, { "relation": "method", @@ -125108,9 +125118,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_isactive", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_isactive" }, { "relation": "method", @@ -125118,9 +125128,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_setactive", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_setactive" }, { "relation": "method", @@ -125128,9 +125138,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_setannualceilingrials", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_setannualceilingrials" }, { "relation": "method", @@ -125138,9 +125148,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_setcoveragepercent", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_setcoveragepercent" }, { "relation": "method", @@ -125148,9 +125158,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_seteffectiveto", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_seteffectiveto" }, { "relation": "method", @@ -125158,9 +125168,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_setfranchiserials", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_setfranchiserials" }, { "relation": "method", @@ -125168,9 +125178,9 @@ "source_file": "src/Insurance/Entity/TenantInsurance.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance", - "target": "entity_tenantinsurance_tenantinsurance_toarray", - "confidence_score": 1.0 + "target": "entity_tenantinsurance_tenantinsurance_toarray" }, { "relation": "calls", @@ -125201,9 +125211,9 @@ "source_location": "L87", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance_setactive", - "target": "src_insurance_entity_tenantinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantinsurance_php_self" }, { "relation": "references", @@ -125212,9 +125222,9 @@ "source_location": "L90", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance_setannualceilingrials", - "target": "src_insurance_entity_tenantinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantinsurance_php_self" }, { "relation": "references", @@ -125223,9 +125233,9 @@ "source_location": "L88", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance_setcoveragepercent", - "target": "src_insurance_entity_tenantinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantinsurance_php_self" }, { "relation": "references", @@ -125234,9 +125244,9 @@ "source_location": "L91", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance_seteffectiveto", - "target": "src_insurance_entity_tenantinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantinsurance_php_self" }, { "relation": "references", @@ -125245,9 +125255,9 @@ "source_location": "L89", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantinsurance_tenantinsurance_setfranchiserials", - "target": "src_insurance_entity_tenantinsurance_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantinsurance_php_self" }, { "relation": "calls", @@ -125299,9 +125309,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage" }, { "relation": "method", @@ -125309,9 +125319,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_construct", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_construct" }, { "relation": "method", @@ -125319,9 +125329,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getceilingrials", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getceilingrials" }, { "relation": "method", @@ -125329,9 +125339,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getcoveragepercent", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getcoveragepercent" }, { "relation": "method", @@ -125339,9 +125349,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getfranchiserials", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getfranchiserials" }, { "relation": "method", @@ -125349,9 +125359,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getid", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getid" }, { "relation": "method", @@ -125359,9 +125369,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getserviceitemid", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getserviceitemid" }, { "relation": "method", @@ -125369,9 +125379,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_gettenantinsuranceid", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_gettenantinsuranceid" }, { "relation": "method", @@ -125379,9 +125389,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getuuid", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getuuid" }, { "relation": "method", @@ -125389,9 +125399,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_iscovered", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_iscovered" }, { "relation": "method", @@ -125399,9 +125409,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_setceilingrials", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_setceilingrials" }, { "relation": "method", @@ -125409,9 +125419,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_setcoveragepercent", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_setcoveragepercent" }, { "relation": "method", @@ -125419,9 +125429,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_setcovered", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_setcovered" }, { "relation": "method", @@ -125429,9 +125439,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_setfranchiserials", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_setfranchiserials" }, { "relation": "method", @@ -125439,9 +125449,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage", - "target": "entity_tenantservicecoverage_tenantservicecoverage_toarray", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_toarray" }, { "relation": "calls", @@ -125461,9 +125471,9 @@ "source_file": "src/Insurance/Entity/TenantServiceCoverage.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage_toarray", - "target": "entity_tenantservicecoverage_tenantservicecoverage_getcoveragepercent", - "confidence_score": 1.0 + "target": "entity_tenantservicecoverage_tenantservicecoverage_getcoveragepercent" }, { "relation": "calls", @@ -125483,9 +125493,9 @@ "source_location": "L61", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage_setcovered", - "target": "src_insurance_entity_tenantservicecoverage_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantservicecoverage_php_self" }, { "relation": "references", @@ -125494,9 +125504,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage_setceilingrials", - "target": "src_insurance_entity_tenantservicecoverage_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantservicecoverage_php_self" }, { "relation": "references", @@ -125505,9 +125515,9 @@ "source_location": "L62", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage_setcoveragepercent", - "target": "src_insurance_entity_tenantservicecoverage_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantservicecoverage_php_self" }, { "relation": "references", @@ -125516,9 +125526,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tenantservicecoverage_tenantservicecoverage_setfranchiserials", - "target": "src_insurance_entity_tenantservicecoverage_php_self", - "confidence_score": 1.0 + "target": "src_insurance_entity_tenantservicecoverage_php_self" }, { "relation": "calls", @@ -125559,9 +125569,9 @@ "source_file": "src/Insurance/Enum/InsuranceType.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "enum_insurancetype", - "target": "enum_insurancetype_label", - "confidence_score": 1.0 + "target": "enum_insurancetype_label" }, { "relation": "imports", @@ -125570,9 +125580,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository", - "target": "doctorinsurance", - "confidence_score": 1.0 + "target": "doctorinsurance" }, { "relation": "contains", @@ -125580,9 +125590,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository", - "target": "repository_doctorinsurancerepository_doctorinsurancerepository", - "confidence_score": 1.0 + "target": "repository_doctorinsurancerepository_doctorinsurancerepository" }, { "relation": "imports", @@ -125591,9 +125601,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository", - "target": "src_insurance_repository_doctorinsurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_doctorinsurancerepository_php_managerregistry" }, { "relation": "method", @@ -125601,9 +125611,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository", - "target": "repository_doctorinsurancerepository_doctorinsurancerepository_construct", - "confidence_score": 1.0 + "target": "repository_doctorinsurancerepository_doctorinsurancerepository_construct" }, { "relation": "method", @@ -125611,9 +125621,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository", - "target": "repository_doctorinsurancerepository_doctorinsurancerepository_remove", - "confidence_score": 1.0 + "target": "repository_doctorinsurancerepository_doctorinsurancerepository_remove" }, { "relation": "method", @@ -125621,9 +125631,9 @@ "source_file": "src/Insurance/Repository/DoctorInsuranceRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository", - "target": "repository_doctorinsurancerepository_doctorinsurancerepository_save", - "confidence_score": 1.0 + "target": "repository_doctorinsurancerepository_doctorinsurancerepository_save" }, { "relation": "references_constant", @@ -125642,9 +125652,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository_construct", - "target": "src_insurance_repository_doctorinsurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_doctorinsurancerepository_php_managerregistry" }, { "relation": "references", @@ -125653,9 +125663,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository_save", - "target": "doctorinsurance", - "confidence_score": 1.0 + "target": "doctorinsurance" }, { "relation": "references", @@ -125664,9 +125674,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorinsurancerepository_doctorinsurancerepository_remove", - "target": "doctorinsurance", - "confidence_score": 1.0 + "target": "doctorinsurance" }, { "relation": "imports", @@ -125675,9 +125685,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository", - "target": "entityinsurancepricing", - "confidence_score": 1.0 + "target": "entityinsurancepricing" }, { "relation": "contains", @@ -125685,9 +125695,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository" }, { "relation": "imports", @@ -125696,9 +125706,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository", - "target": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry" }, { "relation": "method", @@ -125706,9 +125716,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_construct", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_construct" }, { "relation": "method", @@ -125716,9 +125726,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findbyentity" }, { "relation": "method", @@ -125726,9 +125736,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findoneforinsurance", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findoneforinsurance" }, { "relation": "method", @@ -125736,9 +125746,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_remove", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_remove" }, { "relation": "method", @@ -125746,9 +125756,9 @@ "source_file": "src/Insurance/Repository/EntityInsurancePricingRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_save", - "confidence_score": 1.0 + "target": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_save" }, { "relation": "references_constant", @@ -125767,9 +125777,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_construct", - "target": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry" }, { "relation": "references", @@ -125778,9 +125788,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findoneforinsurance", - "target": "entityinsurancepricing", - "confidence_score": 1.0 + "target": "entityinsurancepricing" }, { "relation": "references", @@ -125789,9 +125799,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_remove", - "target": "entityinsurancepricing", - "confidence_score": 1.0 + "target": "entityinsurancepricing" }, { "relation": "references", @@ -125800,9 +125810,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_save", - "target": "entityinsurancepricing", - "confidence_score": 1.0 + "target": "entityinsurancepricing" }, { "relation": "contains", @@ -125810,9 +125820,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository", - "target": "repository_insurancerepository_insurancerepository", - "confidence_score": 1.0 + "target": "repository_insurancerepository_insurancerepository" }, { "relation": "imports", @@ -125821,9 +125831,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository", - "target": "src_insurance_repository_insurancerepository_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_insurance" }, { "relation": "imports", @@ -125832,9 +125842,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository", - "target": "src_insurance_repository_insurancerepository_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_insurancetype" }, { "relation": "imports", @@ -125843,9 +125853,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository", - "target": "src_insurance_repository_insurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_managerregistry" }, { "relation": "method", @@ -125853,9 +125863,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository", - "target": "repository_insurancerepository_insurancerepository_construct", - "confidence_score": 1.0 + "target": "repository_insurancerepository_insurancerepository_construct" }, { "relation": "method", @@ -125863,9 +125873,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository", - "target": "repository_insurancerepository_insurancerepository_findactive", - "confidence_score": 1.0 + "target": "repository_insurancerepository_insurancerepository_findactive" }, { "relation": "method", @@ -125873,9 +125883,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository", - "target": "repository_insurancerepository_insurancerepository_remove", - "confidence_score": 1.0 + "target": "repository_insurancerepository_insurancerepository_remove" }, { "relation": "method", @@ -125883,9 +125893,9 @@ "source_file": "src/Insurance/Repository/InsuranceRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository", - "target": "repository_insurancerepository_insurancerepository_save", - "confidence_score": 1.0 + "target": "repository_insurancerepository_insurancerepository_save" }, { "relation": "references_constant", @@ -125904,9 +125914,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository_construct", - "target": "src_insurance_repository_insurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_managerregistry" }, { "relation": "references", @@ -125915,9 +125925,9 @@ "source_location": "L18", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository_findactive", - "target": "src_insurance_repository_insurancerepository_php_insurancetype", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_insurancetype" }, { "relation": "references", @@ -125926,9 +125936,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository_save", - "target": "src_insurance_repository_insurancerepository_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_insurance" }, { "relation": "references", @@ -125937,9 +125947,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_insurancerepository_insurancerepository_remove", - "target": "src_insurance_repository_insurancerepository_php_insurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_insurancerepository_php_insurance" }, { "relation": "contains", @@ -125947,9 +125957,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository" }, { "relation": "imports", @@ -125958,9 +125968,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository", - "target": "src_insurance_repository_tenantinsurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_managerregistry" }, { "relation": "imports", @@ -125969,9 +125979,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository", - "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance" }, { "relation": "method", @@ -125979,9 +125989,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_construct", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_construct" }, { "relation": "method", @@ -125989,9 +125999,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findactivebytenant", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findactivebytenant" }, { "relation": "method", @@ -125999,9 +126009,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findactivecontract", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findactivecontract" }, { "relation": "method", @@ -126009,9 +126019,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_findbyuuid" }, { "relation": "method", @@ -126019,9 +126029,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_latestversion", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_latestversion" }, { "relation": "method", @@ -126029,9 +126039,9 @@ "source_file": "src/Insurance/Repository/TenantInsuranceRepository.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository", - "target": "repository_tenantinsurancerepository_tenantinsurancerepository_save", - "confidence_score": 1.0 + "target": "repository_tenantinsurancerepository_tenantinsurancerepository_save" }, { "relation": "references", @@ -126040,9 +126050,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository_construct", - "target": "src_insurance_repository_tenantinsurancerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_managerregistry" }, { "relation": "references_constant", @@ -126061,9 +126071,9 @@ "source_location": "L30", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository_findbyuuid", - "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance" }, { "relation": "references", @@ -126072,9 +126082,9 @@ "source_location": "L35", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository_findactivecontract", - "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance" }, { "relation": "references", @@ -126083,9 +126093,9 @@ "source_location": "L67", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tenantinsurancerepository_tenantinsurancerepository_save", - "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantinsurancerepository_php_tenantinsurance" }, { "relation": "contains", @@ -126093,9 +126103,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository" }, { "relation": "imports", @@ -126104,9 +126114,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository", - "target": "src_insurance_repository_tenantservicecoveragerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantservicecoveragerepository_php_managerregistry" }, { "relation": "imports", @@ -126115,9 +126125,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository", - "target": "tenantservicecoverage", - "confidence_score": 1.0 + "target": "tenantservicecoverage" }, { "relation": "method", @@ -126125,9 +126135,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_construct", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_construct" }, { "relation": "method", @@ -126135,9 +126145,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findbycontract", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findbycontract" }, { "relation": "method", @@ -126145,9 +126155,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findonefor", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findonefor" }, { "relation": "method", @@ -126155,9 +126165,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_remove", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_remove" }, { "relation": "method", @@ -126165,9 +126175,9 @@ "source_file": "src/Insurance/Repository/TenantServiceCoverageRepository.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository", - "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_save", - "confidence_score": 1.0 + "target": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_save" }, { "relation": "references", @@ -126176,9 +126186,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_construct", - "target": "src_insurance_repository_tenantservicecoveragerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_insurance_repository_tenantservicecoveragerepository_php_managerregistry" }, { "relation": "references_constant", @@ -126197,9 +126207,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findonefor", - "target": "tenantservicecoverage", - "confidence_score": 1.0 + "target": "tenantservicecoverage" }, { "relation": "references", @@ -126208,9 +126218,9 @@ "source_location": "L38", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_remove", - "target": "tenantservicecoverage", - "confidence_score": 1.0 + "target": "tenantservicecoverage" }, { "relation": "references", @@ -126219,9 +126229,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_save", - "target": "tenantservicecoverage", - "confidence_score": 1.0 + "target": "tenantservicecoverage" }, { "relation": "contains", @@ -126229,9 +126239,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice" }, { "relation": "imports", @@ -126240,9 +126250,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice", - "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule" }, { "relation": "imports", @@ -126251,9 +126261,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice", - "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance" }, { "relation": "method", @@ -126261,9 +126271,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_activate", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_activate" }, { "relation": "method", @@ -126271,9 +126281,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_assertactive", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_assertactive" }, { "relation": "method", @@ -126281,9 +126291,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_construct", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_construct" }, { "relation": "method", @@ -126291,9 +126301,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_coveragerule", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_coveragerule" }, { "relation": "method", @@ -126301,9 +126311,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_coverageruleforservice", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_coverageruleforservice" }, { "relation": "method", @@ -126311,9 +126321,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_deactivate", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_deactivate" }, { "relation": "method", @@ -126321,9 +126331,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_getservicecoverage", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_getservicecoverage" }, { "relation": "method", @@ -126331,9 +126341,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice", - "target": "service_tenantinsuranceservice_tenantinsuranceservice_setservicecoverage", - "confidence_score": 1.0 + "target": "service_tenantinsuranceservice_tenantinsuranceservice_setservicecoverage" }, { "relation": "references", @@ -126342,9 +126352,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_activate", - "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance" }, { "relation": "references", @@ -126353,9 +126363,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_assertactive", - "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance" }, { "relation": "references", @@ -126364,9 +126374,9 @@ "source_location": "L55", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_deactivate", - "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance" }, { "relation": "references", @@ -126375,9 +126385,9 @@ "source_location": "L137", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_setservicecoverage", - "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_tenantinsurance" }, { "relation": "calls", @@ -126397,9 +126407,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_coveragerule", - "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule" }, { "relation": "references", @@ -126408,9 +126418,9 @@ "source_file": "src/Insurance/Service/TenantInsuranceService.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "service_tenantinsuranceservice_tenantinsuranceservice_coverageruleforservice", - "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule", - "confidence_score": 1.0 + "target": "src_insurance_service_tenantinsuranceservice_php_coveragerule" }, { "relation": "contains", @@ -126418,9 +126428,9 @@ "source_file": "src/Insurance/ValueObject/CoverageRule.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_coveragerule", - "target": "valueobject_coveragerule_coveragerule", - "confidence_score": 1.0 + "target": "valueobject_coveragerule_coveragerule" }, { "relation": "method", @@ -126428,9 +126438,9 @@ "source_file": "src/Insurance/ValueObject/CoverageRule.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_coveragerule_coveragerule", - "target": "valueobject_coveragerule_coveragerule_construct", - "confidence_score": 1.0 + "target": "valueobject_coveragerule_coveragerule_construct" }, { "relation": "method", @@ -126438,9 +126448,9 @@ "source_file": "src/Insurance/ValueObject/CoverageRule.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "valueobject_coveragerule_coveragerule", - "target": "valueobject_coveragerule_coveragerule_notcovered", - "confidence_score": 1.0 + "target": "valueobject_coveragerule_coveragerule_notcovered" }, { "relation": "references", @@ -126449,9 +126459,9 @@ "source_location": "L14", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "valueobject_coveragerule_coveragerule_notcovered", - "target": "src_insurance_valueobject_coveragerule_php_self", - "confidence_score": 1.0 + "target": "src_insurance_valueobject_coveragerule_php_self" }, { "relation": "imports", @@ -126460,9 +126470,9 @@ "source_file": "src/Kernel.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "src_kernel", - "target": "microkerneltrait", - "confidence_score": 1.0 + "target": "microkerneltrait" }, { "relation": "contains", @@ -126470,9 +126480,9 @@ "source_file": "src/Kernel.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "src_kernel", - "target": "src_kernel_kernel", - "confidence_score": 1.0 + "target": "src_kernel_kernel" }, { "relation": "inherits", @@ -126480,9 +126490,9 @@ "source_file": "src/Kernel.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "src_kernel_kernel", - "target": "basekernel", - "confidence_score": 1.0 + "target": "basekernel" }, { "relation": "mixes_in", @@ -126490,9 +126500,9 @@ "source_file": "src/Kernel.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "src_kernel_kernel", - "target": "microkerneltrait", - "confidence_score": 1.0 + "target": "microkerneltrait" }, { "relation": "imports", @@ -126501,9 +126511,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -126511,9 +126521,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller" }, { "relation": "imports", @@ -126522,9 +126532,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller", - "target": "src_location_controller_locationcontroller_php_city", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_city" }, { "relation": "imports", @@ -126533,9 +126543,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "imports", @@ -126544,9 +126554,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "inherits", @@ -126554,9 +126564,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -126564,9 +126574,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_admincities", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_admincities" }, { "relation": "method", @@ -126574,9 +126584,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_adminprovinces", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_adminprovinces" }, { "relation": "method", @@ -126584,9 +126594,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L212", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_applycitydata", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_applycitydata" }, { "relation": "method", @@ -126594,9 +126604,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_cities", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_cities" }, { "relation": "method", @@ -126604,9 +126614,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_construct", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_construct" }, { "relation": "method", @@ -126614,9 +126624,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_createcity", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_createcity" }, { "relation": "method", @@ -126624,9 +126634,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_createprovince", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_createprovince" }, { "relation": "method", @@ -126634,9 +126644,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_deletecity", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_deletecity" }, { "relation": "method", @@ -126644,9 +126654,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_deleteprovince", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_deleteprovince" }, { "relation": "method", @@ -126654,9 +126664,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_provinces", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_provinces" }, { "relation": "method", @@ -126664,9 +126674,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_updatecity", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_updatecity" }, { "relation": "method", @@ -126674,9 +126684,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller", - "target": "controller_locationcontroller_locationcontroller_updateprovince", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_updateprovince" }, { "relation": "references", @@ -126685,9 +126695,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_provinces", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126696,9 +126706,9 @@ "source_location": "L180", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_admincities", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126707,9 +126717,9 @@ "source_location": "L156", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_adminprovinces", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126718,9 +126728,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_cities", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126729,9 +126739,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_createcity", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126740,9 +126750,9 @@ "source_location": "L47", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_createprovince", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126751,9 +126761,9 @@ "source_location": "L141", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_deletecity", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126762,9 +126772,9 @@ "source_location": "L83", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_deleteprovince", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126773,9 +126783,9 @@ "source_location": "L120", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_updatecity", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126784,9 +126794,9 @@ "source_location": "L65", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_updateprovince", - "target": "src_location_controller_locationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_jsonresponse" }, { "relation": "references", @@ -126795,9 +126805,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_cities", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126806,9 +126816,9 @@ "source_location": "L180", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_admincities", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126817,9 +126827,9 @@ "source_location": "L156", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_adminprovinces", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126828,9 +126838,9 @@ "source_location": "L98", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_createcity", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126839,9 +126849,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_createprovince", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126850,9 +126860,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_updatecity", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "references", @@ -126861,9 +126871,9 @@ "source_location": "L65", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_updateprovince", - "target": "src_location_controller_locationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_request" }, { "relation": "calls", @@ -126872,9 +126882,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_createcity", - "target": "controller_locationcontroller_locationcontroller_applycitydata", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_applycitydata" }, { "relation": "calls", @@ -126883,9 +126893,9 @@ "source_file": "src/Location/Controller/LocationController.php", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_updatecity", - "target": "controller_locationcontroller_locationcontroller_applycitydata", - "confidence_score": 1.0 + "target": "controller_locationcontroller_locationcontroller_applycitydata" }, { "relation": "references", @@ -126894,9 +126904,9 @@ "source_location": "L212", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_locationcontroller_locationcontroller_applycitydata", - "target": "src_location_controller_locationcontroller_php_city", - "confidence_score": 1.0 + "target": "src_location_controller_locationcontroller_php_city" }, { "relation": "contains", @@ -126904,9 +126914,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city", - "target": "entity_city_city", - "confidence_score": 1.0 + "target": "entity_city_city" }, { "relation": "method", @@ -126914,9 +126924,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_construct", - "confidence_score": 1.0 + "target": "entity_city_city_construct" }, { "relation": "method", @@ -126924,9 +126934,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getcontactphone", - "confidence_score": 1.0 + "target": "entity_city_city_getcontactphone" }, { "relation": "method", @@ -126934,9 +126944,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getdescription", - "confidence_score": 1.0 + "target": "entity_city_city_getdescription" }, { "relation": "method", @@ -126944,9 +126954,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getdomain", - "confidence_score": 1.0 + "target": "entity_city_city_getdomain" }, { "relation": "method", @@ -126954,9 +126964,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getemail", - "confidence_score": 1.0 + "target": "entity_city_city_getemail" }, { "relation": "method", @@ -126964,9 +126974,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getfooterdescription", - "confidence_score": 1.0 + "target": "entity_city_city_getfooterdescription" }, { "relation": "method", @@ -126974,9 +126984,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getid", - "confidence_score": 1.0 + "target": "entity_city_city_getid" }, { "relation": "method", @@ -126984,9 +126994,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getkeywords", - "confidence_score": 1.0 + "target": "entity_city_city_getkeywords" }, { "relation": "method", @@ -126994,9 +127004,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getlogourl", - "confidence_score": 1.0 + "target": "entity_city_city_getlogourl" }, { "relation": "method", @@ -127004,9 +127014,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getname", - "confidence_score": 1.0 + "target": "entity_city_city_getname" }, { "relation": "method", @@ -127014,9 +127024,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getprovince", - "confidence_score": 1.0 + "target": "entity_city_city_getprovince" }, { "relation": "method", @@ -127024,9 +127034,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getrepresentationid", - "confidence_score": 1.0 + "target": "entity_city_city_getrepresentationid" }, { "relation": "method", @@ -127034,9 +127044,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getslogan", - "confidence_score": 1.0 + "target": "entity_city_city_getslogan" }, { "relation": "method", @@ -127044,9 +127054,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getsocialmedia", - "confidence_score": 1.0 + "target": "entity_city_city_getsocialmedia" }, { "relation": "method", @@ -127054,9 +127064,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getstatus", - "confidence_score": 1.0 + "target": "entity_city_city_getstatus" }, { "relation": "method", @@ -127064,9 +127074,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getuuid", - "confidence_score": 1.0 + "target": "entity_city_city_getuuid" }, { "relation": "method", @@ -127074,9 +127084,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_getweight", - "confidence_score": 1.0 + "target": "entity_city_city_getweight" }, { "relation": "method", @@ -127084,9 +127094,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setcontactphone", - "confidence_score": 1.0 + "target": "entity_city_city_setcontactphone" }, { "relation": "method", @@ -127094,9 +127104,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setdescription", - "confidence_score": 1.0 + "target": "entity_city_city_setdescription" }, { "relation": "method", @@ -127104,9 +127114,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setdomain", - "confidence_score": 1.0 + "target": "entity_city_city_setdomain" }, { "relation": "method", @@ -127114,9 +127124,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setemail", - "confidence_score": 1.0 + "target": "entity_city_city_setemail" }, { "relation": "method", @@ -127124,9 +127134,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setfooterdescription", - "confidence_score": 1.0 + "target": "entity_city_city_setfooterdescription" }, { "relation": "method", @@ -127134,9 +127144,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setkeywords", - "confidence_score": 1.0 + "target": "entity_city_city_setkeywords" }, { "relation": "method", @@ -127144,9 +127154,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setlogourl", - "confidence_score": 1.0 + "target": "entity_city_city_setlogourl" }, { "relation": "method", @@ -127154,9 +127164,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setname", - "confidence_score": 1.0 + "target": "entity_city_city_setname" }, { "relation": "method", @@ -127164,9 +127174,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setprovince", - "confidence_score": 1.0 + "target": "entity_city_city_setprovince" }, { "relation": "method", @@ -127174,9 +127184,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setrepresentationid", - "confidence_score": 1.0 + "target": "entity_city_city_setrepresentationid" }, { "relation": "method", @@ -127184,9 +127194,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setslogan", - "confidence_score": 1.0 + "target": "entity_city_city_setslogan" }, { "relation": "method", @@ -127194,9 +127204,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setsocialmedia", - "confidence_score": 1.0 + "target": "entity_city_city_setsocialmedia" }, { "relation": "method", @@ -127204,9 +127214,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setstatus", - "confidence_score": 1.0 + "target": "entity_city_city_setstatus" }, { "relation": "method", @@ -127214,9 +127224,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_setweight", - "confidence_score": 1.0 + "target": "entity_city_city_setweight" }, { "relation": "method", @@ -127224,9 +127234,9 @@ "source_file": "src/Location/Entity/City.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_city_city", - "target": "entity_city_city_toarray", - "confidence_score": 1.0 + "target": "entity_city_city_toarray" }, { "relation": "references", @@ -127235,9 +127245,9 @@ "source_location": "L33", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_city_city", - "target": "src_location_entity_city_php_province", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_province" }, { "relation": "references", @@ -127246,9 +127256,9 @@ "source_location": "L67", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_city_city_construct", - "target": "src_location_entity_city_php_province", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_province" }, { "relation": "references", @@ -127257,9 +127267,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_getprovince", - "target": "src_location_entity_city_php_province", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_province" }, { "relation": "references", @@ -127268,9 +127278,9 @@ "source_location": "L94", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_city_city_setprovince", - "target": "src_location_entity_city_php_province", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_province" }, { "relation": "references", @@ -127279,9 +127289,9 @@ "source_location": "L91", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setname", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127290,9 +127300,9 @@ "source_location": "L96", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setcontactphone", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127301,9 +127311,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setdescription", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127312,9 +127322,9 @@ "source_location": "L100", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setdomain", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127323,9 +127333,9 @@ "source_location": "L97", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setemail", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127334,9 +127344,9 @@ "source_location": "L102", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setfooterdescription", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127345,9 +127355,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setkeywords", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127356,9 +127366,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setlogourl", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127367,9 +127377,9 @@ "source_location": "L94", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setprovince", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127378,9 +127388,9 @@ "source_location": "L95", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setrepresentationid", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127389,9 +127399,9 @@ "source_location": "L99", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setslogan", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127400,9 +127410,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setsocialmedia", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127411,9 +127421,9 @@ "source_location": "L92", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setstatus", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "references", @@ -127422,9 +127432,9 @@ "source_location": "L93", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_city_city_setweight", - "target": "src_location_entity_city_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_city_php_self" }, { "relation": "contains", @@ -127432,9 +127442,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province", - "target": "entity_province_province", - "confidence_score": 1.0 + "target": "entity_province_province" }, { "relation": "method", @@ -127442,9 +127452,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_construct", - "confidence_score": 1.0 + "target": "entity_province_province_construct" }, { "relation": "method", @@ -127452,9 +127462,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_getid", - "confidence_score": 1.0 + "target": "entity_province_province_getid" }, { "relation": "method", @@ -127462,9 +127472,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_getname", - "confidence_score": 1.0 + "target": "entity_province_province_getname" }, { "relation": "method", @@ -127472,9 +127482,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_getstatus", - "confidence_score": 1.0 + "target": "entity_province_province_getstatus" }, { "relation": "method", @@ -127482,9 +127492,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_getuuid", - "confidence_score": 1.0 + "target": "entity_province_province_getuuid" }, { "relation": "method", @@ -127492,9 +127502,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_getweight", - "confidence_score": 1.0 + "target": "entity_province_province_getweight" }, { "relation": "method", @@ -127502,9 +127512,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_setname", - "confidence_score": 1.0 + "target": "entity_province_province_setname" }, { "relation": "method", @@ -127512,9 +127522,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_setstatus", - "confidence_score": 1.0 + "target": "entity_province_province_setstatus" }, { "relation": "method", @@ -127522,9 +127532,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_setweight", - "confidence_score": 1.0 + "target": "entity_province_province_setweight" }, { "relation": "method", @@ -127532,9 +127542,9 @@ "source_file": "src/Location/Entity/Province.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_province_province", - "target": "entity_province_province_toarray", - "confidence_score": 1.0 + "target": "entity_province_province_toarray" }, { "relation": "references", @@ -127543,9 +127553,9 @@ "source_location": "L43", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_province_province_setname", - "target": "src_location_entity_province_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_province_php_self" }, { "relation": "references", @@ -127554,9 +127564,9 @@ "source_location": "L44", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_province_province_setstatus", - "target": "src_location_entity_province_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_province_php_self" }, { "relation": "references", @@ -127565,9 +127575,9 @@ "source_location": "L45", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_province_province_setweight", - "target": "src_location_entity_province_php_self", - "confidence_score": 1.0 + "target": "src_location_entity_province_php_self" }, { "relation": "contains", @@ -127575,9 +127585,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository", - "target": "repository_cityrepository_cityrepository", - "confidence_score": 1.0 + "target": "repository_cityrepository_cityrepository" }, { "relation": "imports", @@ -127586,9 +127596,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository", - "target": "src_location_repository_cityrepository_php_city", - "confidence_score": 1.0 + "target": "src_location_repository_cityrepository_php_city" }, { "relation": "imports", @@ -127597,9 +127607,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository", - "target": "src_location_repository_cityrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_location_repository_cityrepository_php_managerregistry" }, { "relation": "method", @@ -127607,9 +127617,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository", - "target": "repository_cityrepository_cityrepository_construct", - "confidence_score": 1.0 + "target": "repository_cityrepository_cityrepository_construct" }, { "relation": "method", @@ -127617,9 +127627,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository", - "target": "repository_cityrepository_cityrepository_findactive", - "confidence_score": 1.0 + "target": "repository_cityrepository_cityrepository_findactive" }, { "relation": "method", @@ -127627,9 +127637,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository", - "target": "repository_cityrepository_cityrepository_remove", - "confidence_score": 1.0 + "target": "repository_cityrepository_cityrepository_remove" }, { "relation": "method", @@ -127637,9 +127647,9 @@ "source_file": "src/Location/Repository/CityRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository", - "target": "repository_cityrepository_cityrepository_save", - "confidence_score": 1.0 + "target": "repository_cityrepository_cityrepository_save" }, { "relation": "references_constant", @@ -127658,9 +127668,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository_construct", - "target": "src_location_repository_cityrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_location_repository_cityrepository_php_managerregistry" }, { "relation": "references", @@ -127669,9 +127679,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository_save", - "target": "src_location_repository_cityrepository_php_city", - "confidence_score": 1.0 + "target": "src_location_repository_cityrepository_php_city" }, { "relation": "references", @@ -127680,9 +127690,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_cityrepository_cityrepository_remove", - "target": "src_location_repository_cityrepository_php_city", - "confidence_score": 1.0 + "target": "src_location_repository_cityrepository_php_city" }, { "relation": "contains", @@ -127690,9 +127700,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository", - "target": "repository_provincerepository_provincerepository", - "confidence_score": 1.0 + "target": "repository_provincerepository_provincerepository" }, { "relation": "imports", @@ -127701,9 +127711,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository", - "target": "src_location_repository_provincerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_location_repository_provincerepository_php_managerregistry" }, { "relation": "imports", @@ -127712,9 +127722,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository", - "target": "src_location_repository_provincerepository_php_province", - "confidence_score": 1.0 + "target": "src_location_repository_provincerepository_php_province" }, { "relation": "method", @@ -127722,9 +127732,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository", - "target": "repository_provincerepository_provincerepository_construct", - "confidence_score": 1.0 + "target": "repository_provincerepository_provincerepository_construct" }, { "relation": "method", @@ -127732,9 +127742,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository", - "target": "repository_provincerepository_provincerepository_findactive", - "confidence_score": 1.0 + "target": "repository_provincerepository_provincerepository_findactive" }, { "relation": "method", @@ -127742,9 +127752,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository", - "target": "repository_provincerepository_provincerepository_remove", - "confidence_score": 1.0 + "target": "repository_provincerepository_provincerepository_remove" }, { "relation": "method", @@ -127752,9 +127762,9 @@ "source_file": "src/Location/Repository/ProvinceRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository", - "target": "repository_provincerepository_provincerepository_save", - "confidence_score": 1.0 + "target": "repository_provincerepository_provincerepository_save" }, { "relation": "references", @@ -127763,9 +127773,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository_construct", - "target": "src_location_repository_provincerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_location_repository_provincerepository_php_managerregistry" }, { "relation": "references_constant", @@ -127784,9 +127794,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository_save", - "target": "src_location_repository_provincerepository_php_province", - "confidence_score": 1.0 + "target": "src_location_repository_provincerepository_php_province" }, { "relation": "references", @@ -127795,9 +127805,9 @@ "source_location": "L33", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_provincerepository_provincerepository_remove", - "target": "src_location_repository_provincerepository_php_province", - "confidence_score": 1.0 + "target": "src_location_repository_provincerepository_php_province" }, { "relation": "imports", @@ -127806,9 +127816,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -127816,9 +127826,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller" }, { "relation": "imports", @@ -127827,9 +127837,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "imports", @@ -127838,9 +127848,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "imports", @@ -127849,9 +127859,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "inherits", @@ -127859,9 +127869,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -127869,9 +127879,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L328", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "method", @@ -127879,9 +127889,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L255", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_autocreateclaim", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_autocreateclaim" }, { "relation": "method", @@ -127889,9 +127899,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_buildpatientprofile", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_buildpatientprofile" }, { "relation": "method", @@ -127899,9 +127909,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_construct", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_construct" }, { "relation": "method", @@ -127909,9 +127919,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_create", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_create" }, { "relation": "method", @@ -127919,9 +127929,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_createsession", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_createsession" }, { "relation": "method", @@ -127929,9 +127939,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_list", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_list" }, { "relation": "method", @@ -127939,9 +127949,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L339", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_ownsrecord", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_ownsrecord" }, { "relation": "method", @@ -127949,9 +127959,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "method", @@ -127959,9 +127969,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_searchuser", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_searchuser" }, { "relation": "method", @@ -127969,9 +127979,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_sessions", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_sessions" }, { "relation": "method", @@ -127979,9 +127989,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_show", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_show" }, { "relation": "method", @@ -127989,9 +127999,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller", - "target": "controller_patientcontroller_patientcontroller_updatesession", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_updatesession" }, { "relation": "references", @@ -128000,9 +128010,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_buildpatientprofile", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "calls", @@ -128011,9 +128021,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "controller_patientcontroller_patientcontroller_buildpatientprofile", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_buildpatientprofile" }, { "relation": "references", @@ -128022,9 +128032,9 @@ "source_location": "L122", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_create", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128033,9 +128043,9 @@ "source_location": "L230", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128044,9 +128054,9 @@ "source_location": "L101", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_list", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128055,9 +128065,9 @@ "source_location": "L293", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_resolveentity", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128066,9 +128076,9 @@ "source_location": "L77", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_searchuser", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128077,9 +128087,9 @@ "source_location": "L206", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128088,9 +128098,9 @@ "source_location": "L189", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "references", @@ -128099,9 +128109,9 @@ "source_location": "L273", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_updatesession", - "target": "src_patient_controller_patientcontroller_php_user", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_user" }, { "relation": "calls", @@ -128110,9 +128120,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_searchuser", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128121,9 +128131,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_searchuser", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "references", @@ -128132,9 +128142,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_searchuser", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128143,9 +128153,9 @@ "source_location": "L77", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_searchuser", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128154,9 +128164,9 @@ "source_location": "L122", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_create", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128165,9 +128175,9 @@ "source_location": "L230", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128176,9 +128186,9 @@ "source_location": "L101", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_list", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128187,9 +128197,9 @@ "source_location": "L206", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128198,9 +128208,9 @@ "source_location": "L273", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_updatesession", - "target": "src_patient_controller_patientcontroller_php_request", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_request" }, { "relation": "references", @@ -128209,9 +128219,9 @@ "source_location": "L122", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_create", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128220,9 +128230,9 @@ "source_location": "L230", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128231,9 +128241,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_list", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128242,9 +128252,9 @@ "source_location": "L206", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128253,9 +128263,9 @@ "source_location": "L189", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "references", @@ -128264,9 +128274,9 @@ "source_location": "L273", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_updatesession", - "target": "src_patient_controller_patientcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_jsonresponse" }, { "relation": "calls", @@ -128275,9 +128285,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_list", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128286,9 +128296,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_list", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "calls", @@ -128297,9 +128307,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_create", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128308,9 +128318,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_create", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "calls", @@ -128330,9 +128340,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L193", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128341,9 +128351,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L196", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "controller_patientcontroller_patientcontroller_ownsrecord", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_ownsrecord" }, { "relation": "calls", @@ -128352,9 +128362,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_show", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "calls", @@ -128374,9 +128384,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128385,9 +128395,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "controller_patientcontroller_patientcontroller_ownsrecord", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_ownsrecord" }, { "relation": "calls", @@ -128396,9 +128406,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_sessions", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "calls", @@ -128418,9 +128428,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "controller_patientcontroller_patientcontroller_assertpatientgate", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_assertpatientgate" }, { "relation": "calls", @@ -128429,9 +128439,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L244", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "controller_patientcontroller_patientcontroller_autocreateclaim", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_autocreateclaim" }, { "relation": "calls", @@ -128440,9 +128450,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "controller_patientcontroller_patientcontroller_ownsrecord", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_ownsrecord" }, { "relation": "calls", @@ -128451,9 +128461,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L233", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_createsession", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "references", @@ -128462,9 +128472,9 @@ "source_location": "L255", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_autocreateclaim", - "target": "src_patient_controller_patientcontroller_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_controller_patientcontroller_php_patientsession" }, { "relation": "calls", @@ -128484,9 +128494,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L279", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_updatesession", - "target": "controller_patientcontroller_patientcontroller_ownsrecord", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_ownsrecord" }, { "relation": "calls", @@ -128495,9 +128505,9 @@ "source_file": "src/Patient/Controller/PatientController.php", "source_location": "L276", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_patientcontroller_patientcontroller_updatesession", - "target": "controller_patientcontroller_patientcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_patientcontroller_patientcontroller_resolveentity" }, { "relation": "contains", @@ -128505,9 +128515,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord", - "target": "entity_patientrecord_patientrecord", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord" }, { "relation": "imports", @@ -128516,9 +128526,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord", - "target": "src_patient_entity_patientrecord_php_collection", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_collection" }, { "relation": "imports", @@ -128527,9 +128537,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord", - "target": "src_patient_entity_patientrecord_php_user", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_user" }, { "relation": "method", @@ -128537,9 +128547,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_construct", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_construct" }, { "relation": "method", @@ -128547,9 +128557,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getcreatedat", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getcreatedat" }, { "relation": "method", @@ -128557,9 +128567,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getcreatedbyid", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getcreatedbyid" }, { "relation": "method", @@ -128567,9 +128577,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getcreatedbytype", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getcreatedbytype" }, { "relation": "method", @@ -128577,9 +128587,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getentityid", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getentityid" }, { "relation": "method", @@ -128587,9 +128597,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getentitytype", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getentitytype" }, { "relation": "method", @@ -128597,9 +128607,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getid", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getid" }, { "relation": "method", @@ -128607,9 +128617,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getuser", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getuser" }, { "relation": "method", @@ -128617,9 +128627,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_getuuid", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getuuid" }, { "relation": "method", @@ -128627,9 +128637,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "entity_patientrecord_patientrecord_toarray", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_toarray" }, { "relation": "references", @@ -128638,9 +128648,9 @@ "source_location": "L44", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "src_patient_entity_patientrecord_php_collection", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_collection" }, { "relation": "references", @@ -128649,9 +128659,9 @@ "source_location": "L31", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord", - "target": "src_patient_entity_patientrecord_php_user", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_user" }, { "relation": "references", @@ -128660,9 +128670,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord_construct", - "target": "src_patient_entity_patientrecord_php_user", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_user" }, { "relation": "references", @@ -128671,9 +128681,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord_getuser", - "target": "src_patient_entity_patientrecord_php_user", - "confidence_score": 1.0 + "target": "src_patient_entity_patientrecord_php_user" }, { "relation": "calls", @@ -128693,9 +128703,9 @@ "source_file": "src/Patient/Entity/PatientRecord.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientrecord_patientrecord_toarray", - "target": "entity_patientrecord_patientrecord_getuuid", - "confidence_score": 1.0 + "target": "entity_patientrecord_patientrecord_getuuid" }, { "relation": "contains", @@ -128703,9 +128713,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession", - "target": "entity_patientsession_patientsession", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession" }, { "relation": "imports", @@ -128714,9 +128724,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession", - "target": "src_patient_entity_patientsession_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_appointment" }, { "relation": "imports", @@ -128725,9 +128735,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession", - "target": "src_patient_entity_patientsession_php_collection", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_collection" }, { "relation": "method", @@ -128735,9 +128745,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_addservice", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_addservice" }, { "relation": "method", @@ -128745,9 +128755,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_construct", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_construct" }, { "relation": "method", @@ -128755,9 +128765,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getappointment", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getappointment" }, { "relation": "method", @@ -128765,9 +128775,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getbaseinsurancediscountpercent", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getbaseinsurancediscountpercent" }, { "relation": "method", @@ -128775,9 +128785,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getcreatedat", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getcreatedat" }, { "relation": "method", @@ -128785,9 +128795,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getfinalpricerials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getfinalpricerials" }, { "relation": "method", @@ -128795,9 +128805,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getid" }, { "relation": "method", @@ -128805,9 +128815,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getinsurancebaseid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getinsurancebaseid" }, { "relation": "method", @@ -128815,9 +128825,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getinsurancesupplementaryid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getinsurancesupplementaryid" }, { "relation": "method", @@ -128825,9 +128835,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getnotes", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getnotes" }, { "relation": "method", @@ -128835,9 +128845,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getpaymentmethod", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getpaymentmethod" }, { "relation": "method", @@ -128845,9 +128855,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getrecord", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getrecord" }, { "relation": "method", @@ -128855,9 +128865,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getservices", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getservices" }, { "relation": "method", @@ -128865,9 +128875,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getservicestotalrials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getservicestotalrials" }, { "relation": "method", @@ -128875,9 +128885,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getsupplementarydiscountpercent", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getsupplementarydiscountpercent" }, { "relation": "method", @@ -128885,9 +128895,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getupdatedat", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getupdatedat" }, { "relation": "method", @@ -128895,9 +128905,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getuuid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getuuid" }, { "relation": "method", @@ -128905,9 +128915,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_getvisitpricerials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getvisitpricerials" }, { "relation": "method", @@ -128915,9 +128925,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setbaseinsurancediscountpercent", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setbaseinsurancediscountpercent" }, { "relation": "method", @@ -128925,9 +128935,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setfinalpricerials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setfinalpricerials" }, { "relation": "method", @@ -128935,9 +128945,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setinsurancebaseid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setinsurancebaseid" }, { "relation": "method", @@ -128945,9 +128955,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setinsurancesupplementaryid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setinsurancesupplementaryid" }, { "relation": "method", @@ -128955,9 +128965,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setnotes", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setnotes" }, { "relation": "method", @@ -128965,9 +128975,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setpaymentmethod", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setpaymentmethod" }, { "relation": "method", @@ -128975,9 +128985,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setservicestotalrials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setservicestotalrials" }, { "relation": "method", @@ -128985,9 +128995,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setsupplementarydiscountpercent", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setsupplementarydiscountpercent" }, { "relation": "method", @@ -128995,9 +129005,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_setvisitpricerials", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_setvisitpricerials" }, { "relation": "method", @@ -129005,9 +129015,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "entity_patientsession_patientsession_toarray", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_toarray" }, { "relation": "references", @@ -129016,9 +129026,9 @@ "source_location": "L28", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "src_patient_entity_patientsession_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_appointment" }, { "relation": "references", @@ -129027,9 +129037,9 @@ "source_location": "L65", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "src_patient_entity_patientsession_php_collection", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_collection" }, { "relation": "references", @@ -129038,9 +129048,9 @@ "source_location": "L24", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession", - "target": "src_patient_entity_patientsession_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_patientrecord" }, { "relation": "references", @@ -129049,9 +129059,9 @@ "source_location": "L68", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_construct", - "target": "src_patient_entity_patientsession_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_patientrecord" }, { "relation": "references", @@ -129060,9 +129070,9 @@ "source_location": "L80", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_getrecord", - "target": "src_patient_entity_patientsession_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_patientrecord" }, { "relation": "references", @@ -129071,9 +129081,9 @@ "source_location": "L68", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_construct", - "target": "src_patient_entity_patientsession_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_appointment" }, { "relation": "references", @@ -129082,9 +129092,9 @@ "source_location": "L81", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_getappointment", - "target": "src_patient_entity_patientsession_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_appointment" }, { "relation": "references", @@ -129093,9 +129103,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_getservices", - "target": "src_patient_entity_patientsession_php_collection", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_collection" }, { "relation": "calls", @@ -129115,9 +129125,9 @@ "source_file": "src/Patient/Entity/PatientSession.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_toarray", - "target": "entity_patientsession_patientsession_getuuid", - "confidence_score": 1.0 + "target": "entity_patientsession_patientsession_getuuid" }, { "relation": "references", @@ -129126,9 +129136,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_addservice", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129137,9 +129147,9 @@ "source_location": "L86", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_addservice", - "target": "src_patient_entity_patientsession_php_sessionservice", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_sessionservice" }, { "relation": "references", @@ -129148,9 +129158,9 @@ "source_location": "L106", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setbaseinsurancediscountpercent", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129159,9 +129169,9 @@ "source_location": "L109", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setfinalpricerials", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129170,9 +129180,9 @@ "source_location": "L103", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setinsurancebaseid", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129181,9 +129191,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setinsurancesupplementaryid", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129192,9 +129202,9 @@ "source_location": "L111", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setnotes", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129203,9 +129213,9 @@ "source_location": "L110", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setpaymentmethod", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129214,9 +129224,9 @@ "source_location": "L108", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setservicestotalrials", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129225,9 +129235,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setsupplementarydiscountpercent", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "references", @@ -129236,9 +129246,9 @@ "source_location": "L105", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_patientsession_patientsession_setvisitpricerials", - "target": "src_patient_entity_patientsession_php_self", - "confidence_score": 1.0 + "target": "src_patient_entity_patientsession_php_self" }, { "relation": "calls", @@ -129345,9 +129355,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice", - "target": "entity_sessionservice_sessionservice", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice" }, { "relation": "imports", @@ -129356,9 +129366,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice", - "target": "src_patient_entity_sessionservice_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_clinicstaff" }, { "relation": "imports", @@ -129367,9 +129377,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice", - "target": "src_patient_entity_sessionservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_serviceitem" }, { "relation": "method", @@ -129377,9 +129387,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_construct", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_construct" }, { "relation": "method", @@ -129387,9 +129397,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getcreatedat", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getcreatedat" }, { "relation": "method", @@ -129397,9 +129407,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getid", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getid" }, { "relation": "method", @@ -129407,9 +129417,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getlinetotalrials", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getlinetotalrials" }, { "relation": "method", @@ -129417,9 +129427,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getpricerials", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getpricerials" }, { "relation": "method", @@ -129427,9 +129437,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getquantity", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getquantity" }, { "relation": "method", @@ -129437,9 +129447,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getserviceitem", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getserviceitem" }, { "relation": "method", @@ -129447,9 +129457,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getsession", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getsession" }, { "relation": "method", @@ -129457,9 +129467,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getstaff", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getstaff" }, { "relation": "method", @@ -129467,9 +129477,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_getuuid", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getuuid" }, { "relation": "method", @@ -129477,9 +129487,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "entity_sessionservice_sessionservice_toarray", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_toarray" }, { "relation": "references", @@ -129488,9 +129498,9 @@ "source_location": "L31", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "src_patient_entity_sessionservice_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_clinicstaff" }, { "relation": "references", @@ -129499,9 +129509,9 @@ "source_location": "L23", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "src_patient_entity_sessionservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_patientsession" }, { "relation": "references", @@ -129510,9 +129520,9 @@ "source_location": "L27", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice", - "target": "src_patient_entity_sessionservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_serviceitem" }, { "relation": "references", @@ -129521,9 +129531,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_construct", - "target": "src_patient_entity_sessionservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_patientsession" }, { "relation": "references", @@ -129532,9 +129542,9 @@ "source_location": "L57", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_getsession", - "target": "src_patient_entity_sessionservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_patientsession" }, { "relation": "references", @@ -129543,9 +129553,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_construct", - "target": "src_patient_entity_sessionservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_serviceitem" }, { "relation": "references", @@ -129554,9 +129564,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_getserviceitem", - "target": "src_patient_entity_sessionservice_php_serviceitem", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_serviceitem" }, { "relation": "references", @@ -129565,9 +129575,9 @@ "source_location": "L44", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_construct", - "target": "src_patient_entity_sessionservice_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_clinicstaff" }, { "relation": "references", @@ -129576,9 +129586,9 @@ "source_location": "L59", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_getstaff", - "target": "src_patient_entity_sessionservice_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_patient_entity_sessionservice_php_clinicstaff" }, { "relation": "calls", @@ -129587,9 +129597,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_construct", - "target": "entity_sessionservice_sessionservice_getpricerials", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getpricerials" }, { "relation": "calls", @@ -129609,9 +129619,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_toarray", - "target": "entity_sessionservice_sessionservice_getuuid", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getuuid" }, { "relation": "calls", @@ -129620,9 +129630,9 @@ "source_file": "src/Patient/Entity/SessionService.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_sessionservice_sessionservice_toarray", - "target": "entity_sessionservice_sessionservice_getlinetotalrials", - "confidence_score": 1.0 + "target": "entity_sessionservice_sessionservice_getlinetotalrials" }, { "relation": "contains", @@ -129630,9 +129640,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository" }, { "relation": "imports", @@ -129641,9 +129651,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository", - "target": "src_patient_repository_patientrecordrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_managerregistry" }, { "relation": "imports", @@ -129652,9 +129662,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository", - "target": "src_patient_repository_patientrecordrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_patientrecord" }, { "relation": "imports", @@ -129663,9 +129673,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository", - "target": "src_patient_repository_patientrecordrepository_php_user", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_user" }, { "relation": "method", @@ -129673,9 +129683,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_construct", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_construct" }, { "relation": "method", @@ -129683,9 +129693,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_countbyentity", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_countbyentity" }, { "relation": "method", @@ -129693,9 +129703,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_countunique", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_countunique" }, { "relation": "method", @@ -129703,9 +129713,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_findbyentity" }, { "relation": "method", @@ -129713,9 +129723,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_findbyentityanduser", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_findbyentityanduser" }, { "relation": "method", @@ -129723,9 +129733,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_findbyuuid" }, { "relation": "method", @@ -129733,9 +129743,9 @@ "source_file": "src/Patient/Repository/PatientRecordRepository.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository", - "target": "repository_patientrecordrepository_patientrecordrepository_save", - "confidence_score": 1.0 + "target": "repository_patientrecordrepository_patientrecordrepository_save" }, { "relation": "references", @@ -129744,9 +129754,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository_construct", - "target": "src_patient_repository_patientrecordrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_managerregistry" }, { "relation": "references_constant", @@ -129765,9 +129775,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository_findbyuuid", - "target": "src_patient_repository_patientrecordrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_patientrecord" }, { "relation": "references", @@ -129776,9 +129786,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository_findbyentityanduser", - "target": "src_patient_repository_patientrecordrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_patientrecord" }, { "relation": "references", @@ -129787,9 +129797,9 @@ "source_location": "L85", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository_save", - "target": "src_patient_repository_patientrecordrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_patientrecord" }, { "relation": "references", @@ -129798,9 +129808,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientrecordrepository_patientrecordrepository_findbyentityanduser", - "target": "src_patient_repository_patientrecordrepository_php_user", - "confidence_score": 1.0 + "target": "src_patient_repository_patientrecordrepository_php_user" }, { "relation": "contains", @@ -129808,9 +129818,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository" }, { "relation": "imports", @@ -129819,9 +129829,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository", - "target": "src_patient_repository_patientsessionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_managerregistry" }, { "relation": "imports", @@ -129830,9 +129840,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository", - "target": "src_patient_repository_patientsessionrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientrecord" }, { "relation": "imports", @@ -129841,9 +129851,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository", - "target": "src_patient_repository_patientsessionrepository_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientsession" }, { "relation": "method", @@ -129851,9 +129861,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_construct", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_construct" }, { "relation": "method", @@ -129861,9 +129871,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_countbyrecord", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_countbyrecord" }, { "relation": "method", @@ -129871,9 +129881,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_datesforids", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_datesforids" }, { "relation": "method", @@ -129881,9 +129891,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_findbyrecord", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_findbyrecord" }, { "relation": "method", @@ -129891,9 +129901,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_findbyuuid" }, { "relation": "method", @@ -129901,9 +129911,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_patientinfoforids", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_patientinfoforids" }, { "relation": "method", @@ -129911,9 +129921,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_save", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_save" }, { "relation": "method", @@ -129921,9 +129931,9 @@ "source_file": "src/Patient/Repository/PatientSessionRepository.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository", - "target": "repository_patientsessionrepository_patientsessionrepository_sumrevenue", - "confidence_score": 1.0 + "target": "repository_patientsessionrepository_patientsessionrepository_sumrevenue" }, { "relation": "references", @@ -129932,9 +129942,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository_construct", - "target": "src_patient_repository_patientsessionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_managerregistry" }, { "relation": "references_constant", @@ -129953,9 +129963,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository_findbyuuid", - "target": "src_patient_repository_patientsessionrepository_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientsession" }, { "relation": "references", @@ -129964,9 +129974,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository_save", - "target": "src_patient_repository_patientsessionrepository_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientsession" }, { "relation": "references", @@ -129975,9 +129985,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository_findbyrecord", - "target": "src_patient_repository_patientsessionrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientrecord" }, { "relation": "references", @@ -129986,9 +129996,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_patientsessionrepository_patientsessionrepository_countbyrecord", - "target": "src_patient_repository_patientsessionrepository_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_repository_patientsessionrepository_php_patientrecord" }, { "relation": "contains", @@ -129996,9 +130006,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository", - "target": "repository_sessionservicerepository_sessionservicerepository", - "confidence_score": 1.0 + "target": "repository_sessionservicerepository_sessionservicerepository" }, { "relation": "imports", @@ -130007,9 +130017,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository", - "target": "src_patient_repository_sessionservicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_sessionservicerepository_php_managerregistry" }, { "relation": "imports", @@ -130018,9 +130028,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository", - "target": "src_patient_repository_sessionservicerepository_php_sessionservice", - "confidence_score": 1.0 + "target": "src_patient_repository_sessionservicerepository_php_sessionservice" }, { "relation": "method", @@ -130028,9 +130038,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository_sessionservicerepository", - "target": "repository_sessionservicerepository_sessionservicerepository_construct", - "confidence_score": 1.0 + "target": "repository_sessionservicerepository_sessionservicerepository_construct" }, { "relation": "method", @@ -130038,9 +130048,9 @@ "source_file": "src/Patient/Repository/SessionServiceRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_sessionservicerepository_sessionservicerepository", - "target": "repository_sessionservicerepository_sessionservicerepository_save", - "confidence_score": 1.0 + "target": "repository_sessionservicerepository_sessionservicerepository_save" }, { "relation": "references", @@ -130049,9 +130059,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_sessionservicerepository_sessionservicerepository_construct", - "target": "src_patient_repository_sessionservicerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_patient_repository_sessionservicerepository_php_managerregistry" }, { "relation": "references_constant", @@ -130070,9 +130080,9 @@ "source_location": "L16", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_sessionservicerepository_sessionservicerepository_save", - "target": "src_patient_repository_sessionservicerepository_php_sessionservice", - "confidence_score": 1.0 + "target": "src_patient_repository_sessionservicerepository_php_sessionservice" }, { "relation": "imports", @@ -130081,9 +130091,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "billingcalculator", - "confidence_score": 1.0 + "target": "billingcalculator" }, { "relation": "contains", @@ -130091,9 +130101,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "service_patientservice_patientservice", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice" }, { "relation": "imports", @@ -130102,9 +130112,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "src_patient_service_patientservice_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_appointment" }, { "relation": "imports", @@ -130113,9 +130123,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "src_patient_service_patientservice_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_patientrecord" }, { "relation": "imports", @@ -130124,9 +130134,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice", - "target": "src_patient_service_patientservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_patientsession" }, { "relation": "method", @@ -130134,9 +130144,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice", - "target": "service_patientservice_patientservice_autocreateforentity", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_autocreateforentity" }, { "relation": "method", @@ -130144,9 +130154,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice", - "target": "service_patientservice_patientservice_autocreateonappointmentconfirm", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_autocreateonappointmentconfirm" }, { "relation": "method", @@ -130154,9 +130164,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice", - "target": "service_patientservice_patientservice_calculatefinalprice", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_calculatefinalprice" }, { "relation": "method", @@ -130164,9 +130174,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice", - "target": "service_patientservice_patientservice_construct", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_construct" }, { "relation": "method", @@ -130174,9 +130184,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice", - "target": "service_patientservice_patientservice_createsession", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_createsession" }, { "relation": "calls", @@ -130185,9 +130195,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice_createsession", - "target": "service_patientservice_patientservice_calculatefinalprice", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_calculatefinalprice" }, { "relation": "calls", @@ -130196,9 +130206,9 @@ "source_file": "src/Patient/Service/PatientService.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "service_patientservice_patientservice_autocreateonappointmentconfirm", - "target": "service_patientservice_patientservice_autocreateforentity", - "confidence_score": 1.0 + "target": "service_patientservice_patientservice_autocreateforentity" }, { "relation": "references", @@ -130207,9 +130217,9 @@ "source_location": "L77", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_patientservice_patientservice_autocreateonappointmentconfirm", - "target": "src_patient_service_patientservice_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_appointment" }, { "relation": "references", @@ -130218,9 +130228,9 @@ "source_location": "L102", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_patientservice_patientservice_autocreateforentity", - "target": "src_patient_service_patientservice_php_appointment", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_appointment" }, { "relation": "references", @@ -130229,9 +130239,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_patientservice_patientservice_createsession", - "target": "src_patient_service_patientservice_php_patientrecord", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_patientrecord" }, { "relation": "references", @@ -130240,9 +130250,9 @@ "source_location": "L120", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_patientservice_patientservice_createsession", - "target": "src_patient_service_patientservice_php_patientsession", - "confidence_score": 1.0 + "target": "src_patient_service_patientservice_php_patientsession" }, { "relation": "imports", @@ -130251,9 +130261,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -130261,9 +130271,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller" }, { "relation": "imports", @@ -130272,9 +130282,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "imports", @@ -130283,9 +130293,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "src_payment_controller_paymentcontroller_php_payment", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_payment" }, { "relation": "imports", @@ -130294,9 +130304,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "imports", @@ -130305,9 +130315,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller", - "target": "src_payment_controller_paymentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_user" }, { "relation": "inherits", @@ -130315,9 +130325,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -130325,9 +130335,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_allowedhosts", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_allowedhosts" }, { "relation": "method", @@ -130335,9 +130345,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_callback", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_callback" }, { "relation": "method", @@ -130345,9 +130355,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L474", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_config", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_config" }, { "relation": "method", @@ -130355,9 +130365,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_construct", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_construct" }, { "relation": "method", @@ -130365,9 +130375,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L546", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_getstatus", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_getstatus" }, { "relation": "method", @@ -130375,9 +130385,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L630", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation" }, { "relation": "method", @@ -130385,9 +130395,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L616", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge" }, { "relation": "method", @@ -130395,9 +130405,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L663", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation" }, { "relation": "method", @@ -130405,9 +130415,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_initiateappointment" }, { "relation": "method", @@ -130415,9 +130425,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L294", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_initiatesubscription" }, { "relation": "method", @@ -130425,9 +130435,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L595", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip" }, { "relation": "method", @@ -130435,9 +130445,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L585", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend" }, { "relation": "method", @@ -130445,9 +130455,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_mypayments", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_mypayments" }, { "relation": "method", @@ -130455,9 +130465,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L686", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend" }, { "relation": "method", @@ -130465,9 +130475,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L564", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_resolvegateway" }, { "relation": "method", @@ -130475,9 +130485,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller", - "target": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_subscriptioncallback" }, { "relation": "calls", @@ -130497,9 +130507,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "controller_paymentcontroller_paymentcontroller_getstatus", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_getstatus" }, { "relation": "calls", @@ -130508,9 +130518,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend" }, { "relation": "calls", @@ -130519,9 +130529,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_resolvegateway" }, { "relation": "references", @@ -130530,9 +130540,9 @@ "source_location": "L61", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "references_constant", @@ -130551,9 +130561,9 @@ "source_location": "L61", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "references", @@ -130562,9 +130572,9 @@ "source_location": "L61", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiateappointment", - "target": "src_payment_controller_paymentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_user" }, { "relation": "references", @@ -130573,9 +130583,9 @@ "source_location": "L216", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "references", @@ -130584,9 +130594,9 @@ "source_location": "L294", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "references", @@ -130595,9 +130605,9 @@ "source_location": "L529", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_mypayments", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "references", @@ -130606,9 +130616,9 @@ "source_location": "L439", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", - "target": "src_payment_controller_paymentcontroller_php_request", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_request" }, { "relation": "references", @@ -130617,9 +130627,9 @@ "source_location": "L546", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_getstatus", - "target": "src_payment_controller_paymentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_user" }, { "relation": "references", @@ -130628,9 +130638,9 @@ "source_location": "L294", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "target": "src_payment_controller_paymentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_user" }, { "relation": "references", @@ -130639,9 +130649,9 @@ "source_location": "L529", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_mypayments", - "target": "src_payment_controller_paymentcontroller_php_user", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_user" }, { "relation": "references", @@ -130650,9 +130660,9 @@ "source_location": "L474", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_config", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "references", @@ -130661,9 +130671,9 @@ "source_location": "L546", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_getstatus", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "references", @@ -130672,9 +130682,9 @@ "source_location": "L294", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "references", @@ -130683,9 +130693,9 @@ "source_location": "L529", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_mypayments", - "target": "src_payment_controller_paymentcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_jsonresponse" }, { "relation": "calls", @@ -130694,9 +130704,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L286", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation" }, { "relation": "calls", @@ -130705,9 +130715,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L284", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge" }, { "relation": "calls", @@ -130716,9 +130726,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L282", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation" }, { "relation": "calls", @@ -130727,9 +130737,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip" }, { "relation": "calls", @@ -130738,9 +130748,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend" }, { "relation": "calls", @@ -130749,9 +130759,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_resolvegateway" }, { "relation": "references_constant", @@ -130770,9 +130780,9 @@ "source_location": "L216", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_callback", - "target": "src_payment_controller_paymentcontroller_php_response", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_response" }, { "relation": "calls", @@ -130781,9 +130791,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L469", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", - "target": "controller_paymentcontroller_paymentcontroller_callback", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_callback" }, { "relation": "references", @@ -130792,9 +130802,9 @@ "source_location": "L686", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", - "target": "src_payment_controller_paymentcontroller_php_response", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_response" }, { "relation": "references", @@ -130803,9 +130813,9 @@ "source_location": "L439", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", - "target": "src_payment_controller_paymentcontroller_php_response", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_response" }, { "relation": "calls", @@ -130825,9 +130835,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L400", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend" }, { "relation": "calls", @@ -130836,9 +130846,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L404", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", - "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_resolvegateway" }, { "relation": "references_constant", @@ -130857,9 +130867,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L697", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", - "target": "controller_paymentcontroller_paymentcontroller_getstatus", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_getstatus" }, { "relation": "references", @@ -130868,9 +130878,9 @@ "source_location": "L564", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_resolvegateway", - "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface" }, { "relation": "implements", @@ -130878,9 +130888,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface" }, { "relation": "implements", @@ -130888,9 +130898,9 @@ "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway", - "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface" }, { "relation": "implements", @@ -130898,9 +130908,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface" }, { "relation": "calls", @@ -130909,9 +130919,9 @@ "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L587", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", - "target": "controller_paymentcontroller_paymentcontroller_allowedhosts", - "confidence_score": 1.0 + "target": "controller_paymentcontroller_paymentcontroller_allowedhosts" }, { "relation": "references", @@ -130920,9 +130930,9 @@ "source_location": "L616", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", - "target": "src_payment_controller_paymentcontroller_php_payment", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_payment" }, { "relation": "references", @@ -130931,9 +130941,9 @@ "source_location": "L630", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", - "target": "src_payment_controller_paymentcontroller_php_payment", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_payment" }, { "relation": "references", @@ -130942,9 +130952,9 @@ "source_location": "L663", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", - "target": "src_payment_controller_paymentcontroller_php_payment", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_payment" }, { "relation": "references", @@ -130953,9 +130963,9 @@ "source_location": "L686", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", - "target": "src_payment_controller_paymentcontroller_php_payment", - "confidence_score": 1.0 + "target": "src_payment_controller_paymentcontroller_php_payment" }, { "relation": "contains", @@ -130963,9 +130973,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment", - "target": "entity_payment_payment", - "confidence_score": 1.0 + "target": "entity_payment_payment" }, { "relation": "imports", @@ -130974,9 +130984,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment", - "target": "src_payment_entity_payment_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_appointment" }, { "relation": "imports", @@ -130985,9 +130995,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment", - "target": "src_payment_entity_payment_php_user", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_user" }, { "relation": "method", @@ -130995,9 +131005,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_construct", - "confidence_score": 1.0 + "target": "entity_payment_payment_construct" }, { "relation": "method", @@ -131005,9 +131015,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getamountrials", - "confidence_score": 1.0 + "target": "entity_payment_payment_getamountrials" }, { "relation": "method", @@ -131015,9 +131025,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getappointment", - "confidence_score": 1.0 + "target": "entity_payment_payment_getappointment" }, { "relation": "method", @@ -131025,9 +131035,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getcallbackip", - "confidence_score": 1.0 + "target": "entity_payment_payment_getcallbackip" }, { "relation": "method", @@ -131035,9 +131045,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getfrontendaddress", - "confidence_score": 1.0 + "target": "entity_payment_payment_getfrontendaddress" }, { "relation": "method", @@ -131045,9 +131055,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getgateway", - "confidence_score": 1.0 + "target": "entity_payment_payment_getgateway" }, { "relation": "method", @@ -131055,9 +131065,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getgatewaytoken", - "confidence_score": 1.0 + "target": "entity_payment_payment_getgatewaytoken" }, { "relation": "method", @@ -131065,9 +131075,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getid", - "confidence_score": 1.0 + "target": "entity_payment_payment_getid" }, { "relation": "method", @@ -131075,9 +131085,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getmetadata", - "confidence_score": 1.0 + "target": "entity_payment_payment_getmetadata" }, { "relation": "method", @@ -131085,9 +131095,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getorderid", - "confidence_score": 1.0 + "target": "entity_payment_payment_getorderid" }, { "relation": "method", @@ -131095,9 +131105,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getreferenceid", - "confidence_score": 1.0 + "target": "entity_payment_payment_getreferenceid" }, { "relation": "method", @@ -131105,9 +131115,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getstatus", - "confidence_score": 1.0 + "target": "entity_payment_payment_getstatus" }, { "relation": "method", @@ -131115,9 +131125,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_gettype", - "confidence_score": 1.0 + "target": "entity_payment_payment_gettype" }, { "relation": "method", @@ -131125,9 +131135,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getuser", - "confidence_score": 1.0 + "target": "entity_payment_payment_getuser" }, { "relation": "method", @@ -131135,9 +131145,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_getuuid", - "confidence_score": 1.0 + "target": "entity_payment_payment_getuuid" }, { "relation": "method", @@ -131145,9 +131155,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setappointment", - "confidence_score": 1.0 + "target": "entity_payment_payment_setappointment" }, { "relation": "method", @@ -131155,9 +131165,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setcallbackip", - "confidence_score": 1.0 + "target": "entity_payment_payment_setcallbackip" }, { "relation": "method", @@ -131165,9 +131175,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setgatewaytoken", - "confidence_score": 1.0 + "target": "entity_payment_payment_setgatewaytoken" }, { "relation": "method", @@ -131175,9 +131185,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setmetadata", - "confidence_score": 1.0 + "target": "entity_payment_payment_setmetadata" }, { "relation": "method", @@ -131185,9 +131195,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setreferenceid", - "confidence_score": 1.0 + "target": "entity_payment_payment_setreferenceid" }, { "relation": "method", @@ -131195,9 +131205,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_setstatus", - "confidence_score": 1.0 + "target": "entity_payment_payment_setstatus" }, { "relation": "method", @@ -131205,9 +131215,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_toarray", - "confidence_score": 1.0 + "target": "entity_payment_payment_toarray" }, { "relation": "method", @@ -131215,9 +131225,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "references", @@ -131226,9 +131236,9 @@ "source_location": "L41", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "src_payment_entity_payment_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_appointment" }, { "relation": "references", @@ -131237,9 +131247,9 @@ "source_location": "L37", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_payment_payment", - "target": "src_payment_entity_payment_php_user", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_user" }, { "relation": "references", @@ -131248,9 +131258,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_payment_payment_construct", - "target": "src_payment_entity_payment_php_user", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_user" }, { "relation": "references", @@ -131259,9 +131269,9 @@ "source_location": "L94", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_getuser", - "target": "src_payment_entity_payment_php_user", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_user" }, { "relation": "references", @@ -131270,9 +131280,9 @@ "source_location": "L95", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_getappointment", - "target": "src_payment_entity_payment_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_appointment" }, { "relation": "references", @@ -131281,9 +131291,9 @@ "source_location": "L106", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setappointment", - "target": "src_payment_entity_payment_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_appointment" }, { "relation": "calls", @@ -131303,9 +131313,9 @@ "source_location": "L106", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setappointment", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "references", @@ -131314,9 +131324,9 @@ "source_location": "L111", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setcallbackip", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "references", @@ -131325,9 +131335,9 @@ "source_location": "L108", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setgatewaytoken", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "references", @@ -131336,9 +131346,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setmetadata", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "references", @@ -131347,9 +131357,9 @@ "source_location": "L109", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setreferenceid", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "references", @@ -131358,9 +131368,9 @@ "source_location": "L110", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_payment_payment_setstatus", - "target": "src_payment_entity_payment_php_self", - "confidence_score": 1.0 + "target": "src_payment_entity_payment_php_self" }, { "relation": "calls", @@ -131369,9 +131379,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment_setmetadata", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "calls", @@ -131380,9 +131390,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment_setgatewaytoken", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "calls", @@ -131391,9 +131401,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment_setreferenceid", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "calls", @@ -131402,9 +131412,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment_setstatus", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "calls", @@ -131413,9 +131423,9 @@ "source_file": "src/Payment/Entity/Payment.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_payment_payment_setcallbackip", - "target": "entity_payment_payment_touch", - "confidence_score": 1.0 + "target": "entity_payment_payment_touch" }, { "relation": "calls", @@ -131434,9 +131444,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway" }, { "relation": "method", @@ -131444,9 +131454,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload" }, { "relation": "method", @@ -131454,9 +131464,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_buildverifypayload", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_buildverifypayload" }, { "relation": "method", @@ -131464,9 +131474,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_cfg" }, { "relation": "method", @@ -131474,9 +131484,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_construct", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_construct" }, { "relation": "method", @@ -131484,9 +131494,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_date", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_date" }, { "relation": "method", @@ -131494,9 +131504,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_getname", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_getname" }, { "relation": "method", @@ -131504,9 +131514,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_initiate", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_initiate" }, { "relation": "method", @@ -131514,9 +131524,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_parserefid", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_parserefid" }, { "relation": "method", @@ -131524,9 +131534,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_parserescode", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_parserescode" }, { "relation": "method", @@ -131534,9 +131544,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_time", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_time" }, { "relation": "method", @@ -131544,9 +131554,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway", - "target": "gateway_mellatgateway_mellatgateway_verify", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_verify" }, { "relation": "calls", @@ -131555,9 +131565,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "target": "gateway_mellatgateway_mellatgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_cfg" }, { "relation": "calls", @@ -131566,9 +131576,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_buildverifypayload", - "target": "gateway_mellatgateway_mellatgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_cfg" }, { "relation": "calls", @@ -131577,9 +131587,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_initiate", - "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload" }, { "relation": "calls", @@ -131588,9 +131598,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_initiate", - "target": "gateway_mellatgateway_mellatgateway_parserefid", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_parserefid" }, { "relation": "calls", @@ -131599,9 +131609,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_initiate", - "target": "gateway_mellatgateway_mellatgateway_parserescode", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_parserescode" }, { "relation": "references", @@ -131610,9 +131620,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_initiate", - "target": "src_payment_gateway_mellatgateway_php_paymentinitresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_mellatgateway_php_paymentinitresult" }, { "relation": "calls", @@ -131621,9 +131631,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_verify", - "target": "gateway_mellatgateway_mellatgateway_buildverifypayload", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_buildverifypayload" }, { "relation": "calls", @@ -131632,9 +131642,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_verify", - "target": "gateway_mellatgateway_mellatgateway_parserescode", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_parserescode" }, { "relation": "references", @@ -131643,9 +131653,9 @@ "source_location": "L53", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_verify", - "target": "src_payment_gateway_mellatgateway_php_paymentverifyresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_mellatgateway_php_paymentverifyresult" }, { "relation": "calls", @@ -131654,9 +131664,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "target": "gateway_mellatgateway_mellatgateway_date", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_date" }, { "relation": "calls", @@ -131665,9 +131675,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "target": "gateway_mellatgateway_mellatgateway_time", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_time" }, { "relation": "calls", @@ -131742,9 +131752,9 @@ "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mellatgateway_mellatgateway_time", - "target": "gateway_mellatgateway_mellatgateway_date", - "confidence_score": 1.0 + "target": "gateway_mellatgateway_mellatgateway_date" }, { "relation": "calls", @@ -132566,9 +132576,9 @@ "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mockgateway", - "target": "gateway_mockgateway_mockgateway", - "confidence_score": 1.0 + "target": "gateway_mockgateway_mockgateway" }, { "relation": "method", @@ -132576,9 +132586,9 @@ "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway", - "target": "gateway_mockgateway_mockgateway_getname", - "confidence_score": 1.0 + "target": "gateway_mockgateway_mockgateway_getname" }, { "relation": "method", @@ -132586,9 +132596,9 @@ "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway", - "target": "gateway_mockgateway_mockgateway_initiate", - "confidence_score": 1.0 + "target": "gateway_mockgateway_mockgateway_initiate" }, { "relation": "method", @@ -132596,9 +132606,9 @@ "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway", - "target": "gateway_mockgateway_mockgateway_verify", - "confidence_score": 1.0 + "target": "gateway_mockgateway_mockgateway_verify" }, { "relation": "references", @@ -132607,9 +132617,9 @@ "source_location": "L9", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway_initiate", - "target": "src_payment_gateway_mockgateway_php_paymentinitresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_mockgateway_php_paymentinitresult" }, { "relation": "references", @@ -132618,9 +132628,9 @@ "source_location": "L15", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_mockgateway_mockgateway_verify", - "target": "src_payment_gateway_mockgateway_php_paymentverifyresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_mockgateway_php_paymentverifyresult" }, { "relation": "contains", @@ -132628,9 +132638,9 @@ "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentgatewayinterface", - "target": "gateway_paymentgatewayinterface_getname", - "confidence_score": 1.0 + "target": "gateway_paymentgatewayinterface_getname" }, { "relation": "contains", @@ -132638,9 +132648,9 @@ "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentgatewayinterface", - "target": "gateway_paymentgatewayinterface_initiate", - "confidence_score": 1.0 + "target": "gateway_paymentgatewayinterface_initiate" }, { "relation": "contains", @@ -132648,9 +132658,9 @@ "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentgatewayinterface", - "target": "gateway_paymentgatewayinterface_verify", - "confidence_score": 1.0 + "target": "gateway_paymentgatewayinterface_verify" }, { "relation": "references", @@ -132659,9 +132669,9 @@ "source_location": "L12", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_paymentgatewayinterface_initiate", - "target": "src_payment_gateway_paymentgatewayinterface_php_paymentinitresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_paymentgatewayinterface_php_paymentinitresult" }, { "relation": "references", @@ -132670,9 +132680,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_paymentgatewayinterface_verify", - "target": "src_payment_gateway_paymentgatewayinterface_php_paymentverifyresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_paymentgatewayinterface_php_paymentverifyresult" }, { "relation": "contains", @@ -132680,9 +132690,9 @@ "source_file": "src/Payment/Gateway/PaymentInitResult.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentinitresult", - "target": "gateway_paymentinitresult_paymentinitresult", - "confidence_score": 1.0 + "target": "gateway_paymentinitresult_paymentinitresult" }, { "relation": "method", @@ -132690,9 +132700,9 @@ "source_file": "src/Payment/Gateway/PaymentInitResult.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentinitresult_paymentinitresult", - "target": "gateway_paymentinitresult_paymentinitresult_construct", - "confidence_score": 1.0 + "target": "gateway_paymentinitresult_paymentinitresult_construct" }, { "relation": "contains", @@ -132700,9 +132710,9 @@ "source_file": "src/Payment/Gateway/PaymentVerifyResult.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentverifyresult", - "target": "gateway_paymentverifyresult_paymentverifyresult", - "confidence_score": 1.0 + "target": "gateway_paymentverifyresult_paymentverifyresult" }, { "relation": "method", @@ -132710,9 +132720,9 @@ "source_file": "src/Payment/Gateway/PaymentVerifyResult.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_paymentverifyresult_paymentverifyresult", - "target": "gateway_paymentverifyresult_paymentverifyresult_construct", - "confidence_score": 1.0 + "target": "gateway_paymentverifyresult_paymentverifyresult_construct" }, { "relation": "contains", @@ -132720,9 +132730,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway", - "target": "gateway_sepgateway_sepgateway", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway" }, { "relation": "method", @@ -132730,9 +132740,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "gateway_sepgateway_sepgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_cfg" }, { "relation": "method", @@ -132740,9 +132750,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "gateway_sepgateway_sepgateway_construct", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_construct" }, { "relation": "method", @@ -132750,9 +132760,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "gateway_sepgateway_sepgateway_getname", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_getname" }, { "relation": "method", @@ -132760,9 +132770,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "gateway_sepgateway_sepgateway_initiate", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_initiate" }, { "relation": "method", @@ -132770,9 +132780,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway", - "target": "gateway_sepgateway_sepgateway_verify", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_verify" }, { "relation": "calls", @@ -132781,9 +132791,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway_initiate", - "target": "gateway_sepgateway_sepgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_cfg" }, { "relation": "calls", @@ -132792,9 +132802,9 @@ "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway_verify", - "target": "gateway_sepgateway_sepgateway_cfg", - "confidence_score": 1.0 + "target": "gateway_sepgateway_sepgateway_cfg" }, { "relation": "references", @@ -132803,9 +132813,9 @@ "source_location": "L26", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway_initiate", - "target": "src_payment_gateway_sepgateway_php_paymentinitresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_sepgateway_php_paymentinitresult" }, { "relation": "references", @@ -132814,9 +132824,9 @@ "source_location": "L54", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "gateway_sepgateway_sepgateway_verify", - "target": "src_payment_gateway_sepgateway_php_paymentverifyresult", - "confidence_score": 1.0 + "target": "src_payment_gateway_sepgateway_php_paymentverifyresult" }, { "relation": "contains", @@ -132824,9 +132834,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository" }, { "relation": "imports", @@ -132835,9 +132845,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "src_payment_repository_paymentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_appointment" }, { "relation": "imports", @@ -132846,9 +132856,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "src_payment_repository_paymentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_managerregistry" }, { "relation": "imports", @@ -132857,9 +132867,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "src_payment_repository_paymentrepository_php_payment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_payment" }, { "relation": "imports", @@ -132868,9 +132878,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository", - "target": "src_payment_repository_paymentrepository_php_user", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_user" }, { "relation": "method", @@ -132878,9 +132888,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_construct", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_construct" }, { "relation": "method", @@ -132888,9 +132898,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_countbyuser", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_countbyuser" }, { "relation": "method", @@ -132898,9 +132908,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_findbyorderid", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_findbyorderid" }, { "relation": "method", @@ -132908,9 +132918,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_findbyuser" }, { "relation": "method", @@ -132918,9 +132928,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_findbyuuid" }, { "relation": "method", @@ -132928,9 +132938,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_findpendingbyappointment", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_findpendingbyappointment" }, { "relation": "method", @@ -132938,9 +132948,9 @@ "source_file": "src/Payment/Repository/PaymentRepository.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository", - "target": "repository_paymentrepository_paymentrepository_save", - "confidence_score": 1.0 + "target": "repository_paymentrepository_paymentrepository_save" }, { "relation": "references", @@ -132949,9 +132959,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_construct", - "target": "src_payment_repository_paymentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_managerregistry" }, { "relation": "references_constant", @@ -132970,9 +132980,9 @@ "source_location": "L18", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_findbyuuid", - "target": "src_payment_repository_paymentrepository_php_payment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_payment" }, { "relation": "references", @@ -132981,9 +132991,9 @@ "source_location": "L52", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_findbyorderid", - "target": "src_payment_repository_paymentrepository_php_payment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_payment" }, { "relation": "references_constant", @@ -133003,9 +133013,9 @@ "source_location": "L65", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_save", - "target": "src_payment_repository_paymentrepository_php_payment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_payment" }, { "relation": "references", @@ -133014,9 +133024,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_findbyuser", - "target": "src_payment_repository_paymentrepository_php_user", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_user" }, { "relation": "references", @@ -133025,9 +133035,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_countbyuser", - "target": "src_payment_repository_paymentrepository_php_user", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_user" }, { "relation": "references", @@ -133036,9 +133046,9 @@ "source_location": "L57", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_paymentrepository_paymentrepository_findpendingbyappointment", - "target": "src_payment_repository_paymentrepository_php_appointment", - "confidence_score": 1.0 + "target": "src_payment_repository_paymentrepository_php_appointment" }, { "relation": "contains", @@ -133046,9 +133056,9 @@ "source_file": "src/Payment/Service/CircuitBreakerService.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_circuitbreakerservice", - "target": "service_circuitbreakerservice_circuitbreakerservice", - "confidence_score": 1.0 + "target": "service_circuitbreakerservice_circuitbreakerservice" }, { "relation": "method", @@ -133056,9 +133066,9 @@ "source_file": "src/Payment/Service/CircuitBreakerService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_circuitbreakerservice_circuitbreakerservice", - "target": "service_circuitbreakerservice_circuitbreakerservice_construct", - "confidence_score": 1.0 + "target": "service_circuitbreakerservice_circuitbreakerservice_construct" }, { "relation": "method", @@ -133066,9 +133076,9 @@ "source_file": "src/Payment/Service/CircuitBreakerService.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "service_circuitbreakerservice_circuitbreakerservice", - "target": "service_circuitbreakerservice_circuitbreakerservice_isopen", - "confidence_score": 1.0 + "target": "service_circuitbreakerservice_circuitbreakerservice_isopen" }, { "relation": "method", @@ -133076,9 +133086,9 @@ "source_file": "src/Payment/Service/CircuitBreakerService.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "service_circuitbreakerservice_circuitbreakerservice", - "target": "service_circuitbreakerservice_circuitbreakerservice_recordfailure", - "confidence_score": 1.0 + "target": "service_circuitbreakerservice_circuitbreakerservice_recordfailure" }, { "relation": "method", @@ -133086,9 +133096,9 @@ "source_file": "src/Payment/Service/CircuitBreakerService.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "service_circuitbreakerservice_circuitbreakerservice", - "target": "service_circuitbreakerservice_circuitbreakerservice_recordsuccess", - "confidence_score": 1.0 + "target": "service_circuitbreakerservice_circuitbreakerservice_recordsuccess" }, { "relation": "imports", @@ -133097,9 +133107,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -133107,9 +133117,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller" }, { "relation": "imports", @@ -133118,9 +133128,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "like", - "confidence_score": 1.0 + "target": "like" }, { "relation": "imports", @@ -133129,9 +133139,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "rate", - "confidence_score": 1.0 + "target": "rate" }, { "relation": "imports", @@ -133140,9 +133150,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "imports", @@ -133151,9 +133161,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "src_rating_controller_ratingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_request" }, { "relation": "imports", @@ -133162,9 +133172,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "inherits", @@ -133172,9 +133182,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -133182,9 +133192,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L356", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_approvecomment", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_approvecomment" }, { "relation": "method", @@ -133192,9 +133202,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_construct", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_construct" }, { "relation": "method", @@ -133202,9 +133212,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_createcomment", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_createcomment" }, { "relation": "method", @@ -133212,9 +133222,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L285", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_deletecomment", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_deletecomment" }, { "relation": "method", @@ -133222,9 +133232,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_eligibility", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_eligibility" }, { "relation": "method", @@ -133232,9 +133242,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_getaverage", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_getaverage" }, { "relation": "method", @@ -133242,9 +133252,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_listcomments", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_listcomments" }, { "relation": "method", @@ -133252,9 +133262,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_pendingcomments", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_pendingcomments" }, { "relation": "method", @@ -133262,9 +133272,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_rate", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_rate" }, { "relation": "method", @@ -133272,9 +133282,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L392", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_rejectcomment", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_rejectcomment" }, { "relation": "method", @@ -133282,9 +133292,9 @@ "source_file": "src/Rating/Controller/RatingController.php", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller", - "target": "controller_ratingcontroller_ratingcontroller_togglelike", - "confidence_score": 1.0 + "target": "controller_ratingcontroller_ratingcontroller_togglelike" }, { "relation": "calls", @@ -133304,9 +133314,9 @@ "source_location": "L36", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_rate", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133315,9 +133325,9 @@ "source_location": "L36", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_rate", - "target": "src_rating_controller_ratingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_request" }, { "relation": "references", @@ -133326,9 +133336,9 @@ "source_location": "L36", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_rate", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "references", @@ -133337,9 +133347,9 @@ "source_location": "L183", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_createcomment", - "target": "src_rating_controller_ratingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_request" }, { "relation": "references", @@ -133348,9 +133358,9 @@ "source_location": "L430", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_togglelike", - "target": "src_rating_controller_ratingcontroller_php_request", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_request" }, { "relation": "references", @@ -133359,9 +133369,9 @@ "source_location": "L183", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_createcomment", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "references", @@ -133370,9 +133380,9 @@ "source_location": "L285", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_deletecomment", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "references", @@ -133381,9 +133391,9 @@ "source_location": "L141", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_eligibility", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "references", @@ -133392,9 +133402,9 @@ "source_location": "L430", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_togglelike", - "target": "src_rating_controller_ratingcontroller_php_user", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_user" }, { "relation": "references", @@ -133403,9 +133413,9 @@ "source_location": "L356", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_approvecomment", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133414,9 +133424,9 @@ "source_location": "L183", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_createcomment", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133425,9 +133435,9 @@ "source_location": "L285", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_deletecomment", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133436,9 +133446,9 @@ "source_location": "L141", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_eligibility", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133447,9 +133457,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_getaverage", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133458,9 +133468,9 @@ "source_location": "L249", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_listcomments", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133469,9 +133479,9 @@ "source_location": "L329", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_pendingcomments", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133480,9 +133490,9 @@ "source_location": "L392", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_rejectcomment", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "references", @@ -133491,9 +133501,9 @@ "source_location": "L430", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_ratingcontroller_ratingcontroller_togglelike", - "target": "src_rating_controller_ratingcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_rating_controller_ratingcontroller_php_jsonresponse" }, { "relation": "calls", @@ -133512,9 +133522,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment", - "target": "entity_comment_comment", - "confidence_score": 1.0 + "target": "entity_comment_comment" }, { "relation": "imports", @@ -133523,9 +133533,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment", - "target": "src_rating_entity_comment_php_collection", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_collection" }, { "relation": "imports", @@ -133534,9 +133544,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment", - "target": "src_rating_entity_comment_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_doctor" }, { "relation": "imports", @@ -133545,9 +133555,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment", - "target": "src_rating_entity_comment_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_user" }, { "relation": "method", @@ -133555,9 +133565,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_approve", - "confidence_score": 1.0 + "target": "entity_comment_comment_approve" }, { "relation": "references", @@ -133566,9 +133576,9 @@ "source_location": "L59", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_comment_comment_construct", - "target": "entity_comment_comment", - "confidence_score": 1.0 + "target": "entity_comment_comment" }, { "relation": "method", @@ -133576,9 +133586,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getbody", - "confidence_score": 1.0 + "target": "entity_comment_comment_getbody" }, { "relation": "method", @@ -133586,9 +133596,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getdoctor", - "confidence_score": 1.0 + "target": "entity_comment_comment_getdoctor" }, { "relation": "method", @@ -133596,9 +133606,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getid", - "confidence_score": 1.0 + "target": "entity_comment_comment_getid" }, { "relation": "method", @@ -133606,9 +133616,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getlikes", - "confidence_score": 1.0 + "target": "entity_comment_comment_getlikes" }, { "relation": "references", @@ -133617,9 +133627,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_getparent", - "target": "entity_comment_comment", - "confidence_score": 1.0 + "target": "entity_comment_comment" }, { "relation": "method", @@ -133627,9 +133637,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getreplies", - "confidence_score": 1.0 + "target": "entity_comment_comment_getreplies" }, { "relation": "method", @@ -133637,9 +133647,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getstatus", - "confidence_score": 1.0 + "target": "entity_comment_comment_getstatus" }, { "relation": "method", @@ -133647,9 +133657,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getuser", - "confidence_score": 1.0 + "target": "entity_comment_comment_getuser" }, { "relation": "method", @@ -133657,9 +133667,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_getuuid", - "confidence_score": 1.0 + "target": "entity_comment_comment_getuuid" }, { "relation": "method", @@ -133667,9 +133677,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_reject", - "confidence_score": 1.0 + "target": "entity_comment_comment_reject" }, { "relation": "method", @@ -133677,9 +133687,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_setbody", - "confidence_score": 1.0 + "target": "entity_comment_comment_setbody" }, { "relation": "method", @@ -133687,9 +133697,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "entity_comment_comment_toarray", - "confidence_score": 1.0 + "target": "entity_comment_comment_toarray" }, { "relation": "references", @@ -133698,9 +133708,9 @@ "source_location": "L50", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "src_rating_entity_comment_php_collection", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_collection" }, { "relation": "references", @@ -133709,9 +133719,9 @@ "source_location": "L33", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "src_rating_entity_comment_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_doctor" }, { "relation": "references", @@ -133720,9 +133730,9 @@ "source_location": "L29", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_comment_comment", - "target": "src_rating_entity_comment_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_user" }, { "relation": "references", @@ -133731,9 +133741,9 @@ "source_location": "L59", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_comment_comment_construct", - "target": "src_rating_entity_comment_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_user" }, { "relation": "references", @@ -133742,9 +133752,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_getuser", - "target": "src_rating_entity_comment_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_user" }, { "relation": "references", @@ -133753,9 +133763,9 @@ "source_location": "L87", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_comment_comment_toarray", - "target": "src_rating_entity_comment_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_user" }, { "relation": "references", @@ -133764,9 +133774,9 @@ "source_location": "L59", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_comment_comment_construct", - "target": "src_rating_entity_comment_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_doctor" }, { "relation": "references", @@ -133775,9 +133785,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_getdoctor", - "target": "src_rating_entity_comment_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_doctor" }, { "relation": "references", @@ -133786,9 +133796,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_getlikes", - "target": "src_rating_entity_comment_php_collection", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_collection" }, { "relation": "references", @@ -133797,9 +133807,9 @@ "source_location": "L80", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_getreplies", - "target": "src_rating_entity_comment_php_collection", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_collection" }, { "relation": "calls", @@ -133808,9 +133818,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment_toarray", - "target": "entity_comment_comment_getid", - "confidence_score": 1.0 + "target": "entity_comment_comment_getid" }, { "relation": "calls", @@ -133819,9 +133829,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment_toarray", - "target": "entity_comment_comment_getuser", - "confidence_score": 1.0 + "target": "entity_comment_comment_getuser" }, { "relation": "calls", @@ -133830,9 +133840,9 @@ "source_file": "src/Rating/Entity/Comment.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_comment_comment_toarray", - "target": "entity_comment_comment_getstatus", - "confidence_score": 1.0 + "target": "entity_comment_comment_getstatus" }, { "relation": "references", @@ -133841,9 +133851,9 @@ "source_location": "L82", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_setbody", - "target": "src_rating_entity_comment_php_self", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_self" }, { "relation": "references", @@ -133852,9 +133862,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_approve", - "target": "src_rating_entity_comment_php_self", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_self" }, { "relation": "references", @@ -133863,9 +133873,9 @@ "source_location": "L85", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_comment_comment_reject", - "target": "src_rating_entity_comment_php_self", - "confidence_score": 1.0 + "target": "src_rating_entity_comment_php_self" }, { "relation": "contains", @@ -133873,9 +133883,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like", - "target": "entity_like_like", - "confidence_score": 1.0 + "target": "entity_like_like" }, { "relation": "imports", @@ -133884,9 +133894,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like", - "target": "src_rating_entity_like_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_user" }, { "relation": "method", @@ -133894,9 +133904,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_construct", - "confidence_score": 1.0 + "target": "entity_like_like_construct" }, { "relation": "method", @@ -133904,9 +133914,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_getcomment", - "confidence_score": 1.0 + "target": "entity_like_like_getcomment" }, { "relation": "method", @@ -133914,9 +133924,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_getid", - "confidence_score": 1.0 + "target": "entity_like_like_getid" }, { "relation": "method", @@ -133924,9 +133934,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_getuser", - "confidence_score": 1.0 + "target": "entity_like_like_getuser" }, { "relation": "method", @@ -133934,9 +133944,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_getuuid", - "confidence_score": 1.0 + "target": "entity_like_like_getuuid" }, { "relation": "method", @@ -133944,9 +133954,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_getvalue", - "confidence_score": 1.0 + "target": "entity_like_like_getvalue" }, { "relation": "method", @@ -133954,9 +133964,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_setvalue", - "confidence_score": 1.0 + "target": "entity_like_like_setvalue" }, { "relation": "method", @@ -133964,9 +133974,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like", - "target": "entity_like_like_toarray", - "confidence_score": 1.0 + "target": "entity_like_like_toarray" }, { "relation": "references", @@ -133975,9 +133985,9 @@ "source_location": "L26", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_like_like", - "target": "src_rating_entity_like_php_comment", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_comment" }, { "relation": "references", @@ -133986,9 +133996,9 @@ "source_location": "L22", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_like_like", - "target": "src_rating_entity_like_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_user" }, { "relation": "references", @@ -133997,9 +134007,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_like_like_construct", - "target": "src_rating_entity_like_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_user" }, { "relation": "references", @@ -134008,9 +134018,9 @@ "source_location": "L48", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_like_like_getuser", - "target": "src_rating_entity_like_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_user" }, { "relation": "references", @@ -134019,9 +134029,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_like_like_construct", - "target": "src_rating_entity_like_php_comment", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_comment" }, { "relation": "references", @@ -134030,9 +134040,9 @@ "source_location": "L49", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_like_like_getcomment", - "target": "src_rating_entity_like_php_comment", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_comment" }, { "relation": "calls", @@ -134041,9 +134051,9 @@ "source_file": "src/Rating/Entity/Like.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_like_like_toarray", - "target": "entity_like_like_getuuid", - "confidence_score": 1.0 + "target": "entity_like_like_getuuid" }, { "relation": "references", @@ -134052,9 +134062,9 @@ "source_location": "L52", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_like_like_setvalue", - "target": "src_rating_entity_like_php_self", - "confidence_score": 1.0 + "target": "src_rating_entity_like_php_self" }, { "relation": "contains", @@ -134062,9 +134072,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate", - "target": "entity_rate_rate", - "confidence_score": 1.0 + "target": "entity_rate_rate" }, { "relation": "imports", @@ -134073,9 +134083,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate", - "target": "src_rating_entity_rate_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_doctor" }, { "relation": "imports", @@ -134084,9 +134094,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate", - "target": "src_rating_entity_rate_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_user" }, { "relation": "method", @@ -134094,9 +134104,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_construct", - "confidence_score": 1.0 + "target": "entity_rate_rate_construct" }, { "relation": "method", @@ -134104,9 +134114,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getaccuracyofdiagnosis", - "confidence_score": 1.0 + "target": "entity_rate_rate_getaccuracyofdiagnosis" }, { "relation": "method", @@ -134114,9 +134124,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getcliniccleanliness", - "confidence_score": 1.0 + "target": "entity_rate_rate_getcliniccleanliness" }, { "relation": "method", @@ -134124,9 +134134,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getdoctor", - "confidence_score": 1.0 + "target": "entity_rate_rate_getdoctor" }, { "relation": "method", @@ -134134,9 +134144,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getdoctorbehavior", - "confidence_score": 1.0 + "target": "entity_rate_rate_getdoctorbehavior" }, { "relation": "method", @@ -134144,9 +134154,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getdoctorexpertise", - "confidence_score": 1.0 + "target": "entity_rate_rate_getdoctorexpertise" }, { "relation": "method", @@ -134154,9 +134164,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getid", - "confidence_score": 1.0 + "target": "entity_rate_rate_getid" }, { "relation": "method", @@ -134164,9 +134174,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getuser", - "confidence_score": 1.0 + "target": "entity_rate_rate_getuser" }, { "relation": "method", @@ -134174,9 +134184,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getuuid", - "confidence_score": 1.0 + "target": "entity_rate_rate_getuuid" }, { "relation": "method", @@ -134184,9 +134194,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_getwaitingtimeatclinic", - "confidence_score": 1.0 + "target": "entity_rate_rate_getwaitingtimeatclinic" }, { "relation": "method", @@ -134194,9 +134204,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_overallpercent", - "confidence_score": 1.0 + "target": "entity_rate_rate_overallpercent" }, { "relation": "method", @@ -134204,9 +134214,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "entity_rate_rate_setdimensions", - "confidence_score": 1.0 + "target": "entity_rate_rate_setdimensions" }, { "relation": "references", @@ -134215,9 +134225,9 @@ "source_location": "L36", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "src_rating_entity_rate_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_doctor" }, { "relation": "references", @@ -134226,9 +134236,9 @@ "source_location": "L32", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_rate_rate", - "target": "src_rating_entity_rate_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_user" }, { "relation": "references", @@ -134237,9 +134247,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_rate_rate_construct", - "target": "src_rating_entity_rate_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_user" }, { "relation": "references", @@ -134248,9 +134258,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_rate_rate_getuser", - "target": "src_rating_entity_rate_php_user", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_user" }, { "relation": "references", @@ -134259,9 +134269,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_rate_rate_construct", - "target": "src_rating_entity_rate_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_doctor" }, { "relation": "references", @@ -134270,9 +134280,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_rate_rate_getdoctor", - "target": "src_rating_entity_rate_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_doctor" }, { "relation": "calls", @@ -134281,9 +134291,9 @@ "source_file": "src/Rating/Entity/Rate.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_rate_rate_construct", - "target": "entity_rate_rate_setdimensions", - "confidence_score": 1.0 + "target": "entity_rate_rate_setdimensions" }, { "relation": "references", @@ -134292,9 +134302,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_rate_rate_setdimensions", - "target": "src_rating_entity_rate_php_self", - "confidence_score": 1.0 + "target": "src_rating_entity_rate_php_self" }, { "relation": "contains", @@ -134302,9 +134312,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository", - "target": "repository_commentrepository_commentrepository", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository" }, { "relation": "imports", @@ -134313,9 +134323,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository", - "target": "src_rating_repository_commentrepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_comment" }, { "relation": "imports", @@ -134324,9 +134334,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository", - "target": "src_rating_repository_commentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_doctor" }, { "relation": "imports", @@ -134335,9 +134345,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository", - "target": "src_rating_repository_commentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_managerregistry" }, { "relation": "method", @@ -134345,9 +134355,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_construct", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_construct" }, { "relation": "method", @@ -134355,9 +134365,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_findapprovedbydoctor", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_findapprovedbydoctor" }, { "relation": "method", @@ -134365,9 +134375,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_findapprovedrootsbydoctor", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_findapprovedrootsbydoctor" }, { "relation": "method", @@ -134375,9 +134385,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_findbyuuid" }, { "relation": "method", @@ -134385,9 +134395,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_findpending", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_findpending" }, { "relation": "method", @@ -134395,9 +134405,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_remove", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_remove" }, { "relation": "method", @@ -134405,9 +134415,9 @@ "source_file": "src/Rating/Repository/CommentRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository", - "target": "repository_commentrepository_commentrepository_save", - "confidence_score": 1.0 + "target": "repository_commentrepository_commentrepository_save" }, { "relation": "references_constant", @@ -134426,9 +134436,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_construct", - "target": "src_rating_repository_commentrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_managerregistry" }, { "relation": "references", @@ -134437,9 +134447,9 @@ "source_location": "L14", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_findbyuuid", - "target": "src_rating_repository_commentrepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_comment" }, { "relation": "references_constant", @@ -134478,9 +134488,9 @@ "source_location": "L38", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_remove", - "target": "src_rating_repository_commentrepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_comment" }, { "relation": "references", @@ -134489,9 +134499,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_save", - "target": "src_rating_repository_commentrepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_comment" }, { "relation": "references", @@ -134500,9 +134510,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_findapprovedbydoctor", - "target": "src_rating_repository_commentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_doctor" }, { "relation": "references", @@ -134511,9 +134521,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_commentrepository_commentrepository_findapprovedrootsbydoctor", - "target": "src_rating_repository_commentrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_commentrepository_php_doctor" }, { "relation": "imports", @@ -134522,9 +134532,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "like", - "confidence_score": 1.0 + "target": "like" }, { "relation": "contains", @@ -134532,9 +134542,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "repository_likerepository_likerepository", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository" }, { "relation": "imports", @@ -134543,9 +134553,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "src_rating_repository_likerepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_comment" }, { "relation": "imports", @@ -134554,9 +134564,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "src_rating_repository_likerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_managerregistry" }, { "relation": "imports", @@ -134565,9 +134575,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository", - "target": "src_rating_repository_likerepository_php_user", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_user" }, { "relation": "method", @@ -134575,9 +134585,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "repository_likerepository_likerepository_construct", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository_construct" }, { "relation": "method", @@ -134585,9 +134595,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "repository_likerepository_likerepository_countbycomment", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository_countbycomment" }, { "relation": "method", @@ -134595,9 +134605,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "repository_likerepository_likerepository_findbyuserandcomment", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository_findbyuserandcomment" }, { "relation": "method", @@ -134605,9 +134615,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "repository_likerepository_likerepository_remove", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository_remove" }, { "relation": "method", @@ -134615,9 +134625,9 @@ "source_file": "src/Rating/Repository/LikeRepository.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_likerepository_likerepository", - "target": "repository_likerepository_likerepository_save", - "confidence_score": 1.0 + "target": "repository_likerepository_likerepository_save" }, { "relation": "references_constant", @@ -134636,9 +134646,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_construct", - "target": "src_rating_repository_likerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_managerregistry" }, { "relation": "references", @@ -134647,9 +134657,9 @@ "source_location": "L15", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_findbyuserandcomment", - "target": "like", - "confidence_score": 1.0 + "target": "like" }, { "relation": "references", @@ -134658,9 +134668,9 @@ "source_location": "L15", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_findbyuserandcomment", - "target": "src_rating_repository_likerepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_comment" }, { "relation": "references", @@ -134669,9 +134679,9 @@ "source_location": "L15", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_findbyuserandcomment", - "target": "src_rating_repository_likerepository_php_user", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_user" }, { "relation": "references", @@ -134680,9 +134690,9 @@ "source_location": "L18", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_countbycomment", - "target": "src_rating_repository_likerepository_php_comment", - "confidence_score": 1.0 + "target": "src_rating_repository_likerepository_php_comment" }, { "relation": "references", @@ -134691,9 +134701,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_remove", - "target": "like", - "confidence_score": 1.0 + "target": "like" }, { "relation": "references", @@ -134702,9 +134712,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_likerepository_likerepository_save", - "target": "like", - "confidence_score": 1.0 + "target": "like" }, { "relation": "imports", @@ -134713,9 +134723,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "rate", - "confidence_score": 1.0 + "target": "rate" }, { "relation": "contains", @@ -134723,9 +134733,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "repository_raterepository_raterepository", - "confidence_score": 1.0 + "target": "repository_raterepository_raterepository" }, { "relation": "imports", @@ -134734,9 +134744,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "src_rating_repository_raterepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_doctor" }, { "relation": "imports", @@ -134745,9 +134755,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "src_rating_repository_raterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_managerregistry" }, { "relation": "imports", @@ -134756,9 +134766,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository", - "target": "src_rating_repository_raterepository_php_user", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_user" }, { "relation": "method", @@ -134766,9 +134776,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository_raterepository", - "target": "repository_raterepository_raterepository_construct", - "confidence_score": 1.0 + "target": "repository_raterepository_raterepository_construct" }, { "relation": "method", @@ -134776,9 +134786,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository_raterepository", - "target": "repository_raterepository_raterepository_findbyuseranddoctor", - "confidence_score": 1.0 + "target": "repository_raterepository_raterepository_findbyuseranddoctor" }, { "relation": "method", @@ -134786,9 +134796,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository_raterepository", - "target": "repository_raterepository_raterepository_getaggregate", - "confidence_score": 1.0 + "target": "repository_raterepository_raterepository_getaggregate" }, { "relation": "method", @@ -134796,9 +134806,9 @@ "source_file": "src/Rating/Repository/RateRepository.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_raterepository_raterepository", - "target": "repository_raterepository_raterepository_save", - "confidence_score": 1.0 + "target": "repository_raterepository_raterepository_save" }, { "relation": "references_constant", @@ -134817,9 +134827,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_construct", - "target": "src_rating_repository_raterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_managerregistry" }, { "relation": "references", @@ -134828,9 +134838,9 @@ "source_location": "L15", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_findbyuseranddoctor", - "target": "rate", - "confidence_score": 1.0 + "target": "rate" }, { "relation": "references", @@ -134839,9 +134849,9 @@ "source_location": "L15", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_findbyuseranddoctor", - "target": "src_rating_repository_raterepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_doctor" }, { "relation": "references", @@ -134850,9 +134860,9 @@ "source_location": "L15", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_findbyuseranddoctor", - "target": "src_rating_repository_raterepository_php_user", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_user" }, { "relation": "references", @@ -134861,9 +134871,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_getaggregate", - "target": "src_rating_repository_raterepository_php_doctor", - "confidence_score": 1.0 + "target": "src_rating_repository_raterepository_php_doctor" }, { "relation": "references_constant", @@ -134882,9 +134892,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_raterepository_raterepository_save", - "target": "rate", - "confidence_score": 1.0 + "target": "rate" }, { "relation": "imports", @@ -134893,9 +134903,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -134903,9 +134913,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller" }, { "relation": "imports", @@ -134914,9 +134924,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "financialbreakdown", - "confidence_score": 1.0 + "target": "financialbreakdown" }, { "relation": "imports", @@ -134925,9 +134935,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "imports", @@ -134936,9 +134946,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "imports", @@ -134947,9 +134957,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "inherits", @@ -134957,9 +134967,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -134967,9 +134977,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_addiban", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_addiban" }, { "relation": "method", @@ -134977,9 +134987,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L478", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_appointments", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_appointments" }, { "relation": "method", @@ -134987,9 +134997,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_clinics", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_clinics" }, { "relation": "method", @@ -134997,9 +135007,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_construct", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_construct" }, { "relation": "method", @@ -135007,9 +135017,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_createclinic", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_createclinic" }, { "relation": "method", @@ -135017,9 +135027,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_createdoctor", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_createdoctor" }, { "relation": "method", @@ -135027,9 +135037,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L618", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary" }, { "relation": "method", @@ -135037,9 +135047,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_doctors", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_doctors" }, { "relation": "method", @@ -135047,9 +135057,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L669", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance" }, { "relation": "method", @@ -135057,9 +135067,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L556", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_doctorstats", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_doctorstats" }, { "relation": "method", @@ -135067,9 +135077,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L740", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_financereport", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_financereport" }, { "relation": "method", @@ -135077,8 +135087,18 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_me", + "target": "controller_representationactioncontroller_representationactioncontroller_me" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Representation/Controller/RepresentationActionController.php", + "source_location": "L213", + "weight": 1.0, + "source": "controller_representationactioncontroller_representationactioncontroller", + "target": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "confidence_score": 1.0 }, { @@ -135087,9 +135107,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L191", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban" }, { "relation": "method", @@ -135097,9 +135117,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_removeiban", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_removeiban" }, { "relation": "method", @@ -135107,9 +135127,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_repprofile" }, { "relation": "method", @@ -135117,9 +135137,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L587", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus" }, { "relation": "method", @@ -135127,9 +135147,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller", - "target": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode" }, { "relation": "calls", @@ -135138,9 +135158,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_me", - "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_repprofile" }, { "relation": "references", @@ -135149,9 +135169,9 @@ "source_location": "L41", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_me", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135160,9 +135180,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_me", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135171,9 +135191,9 @@ "source_location": "L114", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_addiban", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135182,9 +135202,9 @@ "source_location": "L478", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_appointments", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135193,9 +135213,9 @@ "source_location": "L425", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_clinics", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references_constant", @@ -135226,9 +135246,9 @@ "source_location": "L618", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135237,9 +135257,9 @@ "source_location": "L368", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctors", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135248,9 +135268,9 @@ "source_location": "L669", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135259,9 +135279,9 @@ "source_location": "L556", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctorstats", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135270,9 +135290,9 @@ "source_location": "L740", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_financereport", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135281,9 +135301,9 @@ "source_location": "L169", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_removeiban", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135292,9 +135312,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135303,9 +135323,9 @@ "source_location": "L587", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135314,9 +135334,9 @@ "source_location": "L70", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "target": "src_representation_controller_representationactioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_user" }, { "relation": "references", @@ -135325,9 +135345,9 @@ "source_location": "L114", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_addiban", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135336,9 +135356,9 @@ "source_location": "L478", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_appointments", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135347,9 +135367,9 @@ "source_location": "L425", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_clinics", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135358,9 +135378,9 @@ "source_location": "L289", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_createclinic", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135369,9 +135389,9 @@ "source_location": "L200", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135380,9 +135400,9 @@ "source_location": "L618", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_dashboardsummary", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135391,9 +135411,9 @@ "source_location": "L368", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctors", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135402,9 +135422,9 @@ "source_location": "L669", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135413,9 +135433,9 @@ "source_location": "L556", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctorstats", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135424,9 +135444,9 @@ "source_location": "L740", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_financereport", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135435,9 +135455,9 @@ "source_location": "L169", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_removeiban", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135446,9 +135466,9 @@ "source_location": "L587", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_toggledoctorstatus", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "references", @@ -135457,9 +135477,9 @@ "source_location": "L70", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "target": "src_representation_controller_representationactioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_jsonresponse" }, { "relation": "calls", @@ -135468,9 +135488,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_addiban", - "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_repprofile" }, { "relation": "calls", @@ -135479,9 +135499,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_removeiban", - "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_repprofile" }, { "relation": "references", @@ -135490,9 +135510,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "target": "src_representation_controller_representationactioncontroller_php_representation", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_representation" }, { "relation": "calls", @@ -135501,9 +135521,9 @@ "source_file": "src/Representation/Controller/RepresentationActionController.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "target": "controller_representationactioncontroller_representationactioncontroller_repprofile", - "confidence_score": 1.0 + "target": "controller_representationactioncontroller_representationactioncontroller_repprofile" }, { "relation": "calls", @@ -135523,9 +135543,9 @@ "source_location": "L70", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_verifynationalcode", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135534,9 +135554,9 @@ "source_location": "L114", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_addiban", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135545,9 +135565,9 @@ "source_location": "L478", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_appointments", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135556,9 +135576,9 @@ "source_location": "L425", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_clinics", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135567,9 +135587,9 @@ "source_location": "L289", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_createclinic", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135578,9 +135598,9 @@ "source_location": "L200", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_createdoctor", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135589,9 +135609,9 @@ "source_location": "L368", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctors", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135600,9 +135620,9 @@ "source_location": "L669", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_doctorsperformance", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "references", @@ -135611,9 +135631,9 @@ "source_location": "L740", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_financereport", - "target": "src_representation_controller_representationactioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationactioncontroller_php_request" }, { "relation": "calls", @@ -135631,12 +135651,23 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "src/Representation/Controller/RepresentationActionController.php", - "source_location": "L147", + "source_location": "L157", "weight": 1.0, "source": "controller_representationactioncontroller_representationactioncontroller_addiban", - "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban", + "target": "controller_representationactioncontroller_representationactioncontroller_normalizebirthdate", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/Representation/Controller/RepresentationActionController.php", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "controller_representationactioncontroller_representationactioncontroller_addiban", + "target": "controller_representationactioncontroller_representationactioncontroller_normalizeiban" + }, { "relation": "calls", "context": "call", @@ -135666,9 +135697,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -135676,9 +135707,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller" }, { "relation": "imports", @@ -135687,9 +135718,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "imports", @@ -135698,9 +135729,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "src_representation_controller_representationcontroller_php_representation", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_representation" }, { "relation": "imports", @@ -135709,9 +135740,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "src_representation_controller_representationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_request" }, { "relation": "imports", @@ -135720,9 +135751,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller", - "target": "src_representation_controller_representationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_user" }, { "relation": "inherits", @@ -135730,9 +135761,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -135740,9 +135771,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L392", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_buildstats", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_buildstats" }, { "relation": "method", @@ -135750,9 +135781,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_construct", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_construct" }, { "relation": "method", @@ -135760,9 +135791,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_create", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_create" }, { "relation": "method", @@ -135770,9 +135801,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_dashboardmonthly" }, { "relation": "method", @@ -135780,9 +135811,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L315", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_dashboardyearly", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_dashboardyearly" }, { "relation": "method", @@ -135790,9 +135821,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_delete", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_delete" }, { "relation": "method", @@ -135800,9 +135831,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_get", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_get" }, { "relation": "method", @@ -135810,9 +135841,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller", - "target": "controller_representationcontroller_representationcontroller_update", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_update" }, { "relation": "calls", @@ -135832,9 +135863,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_create", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "references", @@ -135843,9 +135874,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_create", - "target": "src_representation_controller_representationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_request" }, { "relation": "references", @@ -135854,9 +135885,9 @@ "source_location": "L257", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "target": "src_representation_controller_representationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_request" }, { "relation": "references", @@ -135865,9 +135896,9 @@ "source_location": "L315", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardyearly", - "target": "src_representation_controller_representationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_request" }, { "relation": "references", @@ -135876,9 +135907,9 @@ "source_location": "L158", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_update", - "target": "src_representation_controller_representationcontroller_php_request", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_request" }, { "relation": "references", @@ -135887,9 +135918,9 @@ "source_location": "L257", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "references", @@ -135898,9 +135929,9 @@ "source_location": "L315", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardyearly", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "references", @@ -135909,9 +135940,9 @@ "source_location": "L217", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_delete", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "references", @@ -135920,9 +135951,9 @@ "source_location": "L120", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_get", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "references", @@ -135931,9 +135962,9 @@ "source_location": "L158", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_update", - "target": "src_representation_controller_representationcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_jsonresponse" }, { "relation": "calls", @@ -135942,9 +135973,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L304", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "target": "controller_representationcontroller_representationcontroller_get", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_get" }, { "relation": "calls", @@ -135953,9 +135984,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L370", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardyearly", - "target": "controller_representationcontroller_representationcontroller_get", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_get" }, { "relation": "references", @@ -135964,9 +135995,9 @@ "source_location": "L120", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_get", - "target": "src_representation_controller_representationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_user" }, { "relation": "references", @@ -135975,9 +136006,9 @@ "source_location": "L257", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "target": "src_representation_controller_representationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_user" }, { "relation": "references", @@ -135986,9 +136017,9 @@ "source_location": "L315", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardyearly", - "target": "src_representation_controller_representationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_user" }, { "relation": "references", @@ -135997,9 +136028,9 @@ "source_location": "L158", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_update", - "target": "src_representation_controller_representationcontroller_php_user", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_user" }, { "relation": "calls", @@ -136008,9 +136039,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L311", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardmonthly", - "target": "controller_representationcontroller_representationcontroller_buildstats", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_buildstats" }, { "relation": "calls", @@ -136019,9 +136050,9 @@ "source_file": "src/Representation/Controller/RepresentationController.php", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_dashboardyearly", - "target": "controller_representationcontroller_representationcontroller_buildstats", - "confidence_score": 1.0 + "target": "controller_representationcontroller_representationcontroller_buildstats" }, { "relation": "references", @@ -136030,9 +136061,9 @@ "source_location": "L392", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_representationcontroller_representationcontroller_buildstats", - "target": "src_representation_controller_representationcontroller_php_representation", - "confidence_score": 1.0 + "target": "src_representation_controller_representationcontroller_php_representation" }, { "relation": "contains", @@ -136040,9 +136071,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation", - "target": "entity_representation_representation", - "confidence_score": 1.0 + "target": "entity_representation_representation" }, { "relation": "imports", @@ -136051,9 +136082,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation", - "target": "src_representation_entity_representation_php_user", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_user" }, { "relation": "method", @@ -136061,9 +136092,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_addiban", - "confidence_score": 1.0 + "target": "entity_representation_representation_addiban" }, { "relation": "method", @@ -136071,9 +136102,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_construct", - "confidence_score": 1.0 + "target": "entity_representation_representation_construct" }, { "relation": "method", @@ -136081,9 +136112,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_findverifiediban", - "confidence_score": 1.0 + "target": "entity_representation_representation_findverifiediban" }, { "relation": "method", @@ -136091,9 +136122,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getbankaccount", - "confidence_score": 1.0 + "target": "entity_representation_representation_getbankaccount" }, { "relation": "method", @@ -136101,9 +136132,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getcityid", - "confidence_score": 1.0 + "target": "entity_representation_representation_getcityid" }, { "relation": "method", @@ -136111,9 +136142,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getcommissionpercent", - "confidence_score": 1.0 + "target": "entity_representation_representation_getcommissionpercent" }, { "relation": "method", @@ -136121,9 +136152,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getfullname", - "confidence_score": 1.0 + "target": "entity_representation_representation_getfullname" }, { "relation": "method", @@ -136131,9 +136162,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getibans", - "confidence_score": 1.0 + "target": "entity_representation_representation_getibans" }, { "relation": "method", @@ -136141,9 +136172,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getid", - "confidence_score": 1.0 + "target": "entity_representation_representation_getid" }, { "relation": "method", @@ -136151,9 +136182,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getmobilenumber", - "confidence_score": 1.0 + "target": "entity_representation_representation_getmobilenumber" }, { "relation": "method", @@ -136161,9 +136192,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getuser", - "confidence_score": 1.0 + "target": "entity_representation_representation_getuser" }, { "relation": "method", @@ -136171,9 +136202,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_getuuid", - "confidence_score": 1.0 + "target": "entity_representation_representation_getuuid" }, { "relation": "method", @@ -136181,9 +136212,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_isactive", - "confidence_score": 1.0 + "target": "entity_representation_representation_isactive" }, { "relation": "method", @@ -136191,9 +136222,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_removeiban", - "confidence_score": 1.0 + "target": "entity_representation_representation_removeiban" }, { "relation": "method", @@ -136201,9 +136232,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setactive", - "confidence_score": 1.0 + "target": "entity_representation_representation_setactive" }, { "relation": "method", @@ -136211,9 +136242,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setbankaccount", - "confidence_score": 1.0 + "target": "entity_representation_representation_setbankaccount" }, { "relation": "method", @@ -136221,9 +136252,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setcityid", - "confidence_score": 1.0 + "target": "entity_representation_representation_setcityid" }, { "relation": "method", @@ -136231,9 +136262,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setcommissionpercent", - "confidence_score": 1.0 + "target": "entity_representation_representation_setcommissionpercent" }, { "relation": "method", @@ -136241,9 +136272,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setfullname", - "confidence_score": 1.0 + "target": "entity_representation_representation_setfullname" }, { "relation": "method", @@ -136251,9 +136282,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_setmobilenumber", - "confidence_score": 1.0 + "target": "entity_representation_representation_setmobilenumber" }, { "relation": "method", @@ -136261,9 +136292,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_toarray", - "confidence_score": 1.0 + "target": "entity_representation_representation_toarray" }, { "relation": "method", @@ -136271,9 +136302,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "references", @@ -136282,9 +136313,9 @@ "source_location": "L21", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_representation_representation", - "target": "src_representation_entity_representation_php_user", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_user" }, { "relation": "references", @@ -136293,9 +136324,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_representation_representation_construct", - "target": "src_representation_entity_representation_php_user", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_user" }, { "relation": "references", @@ -136304,9 +136335,9 @@ "source_location": "L64", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_getuser", - "target": "src_representation_entity_representation_php_user", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_user" }, { "relation": "calls", @@ -136315,9 +136346,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setfullname", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "references", @@ -136326,9 +136357,9 @@ "source_location": "L72", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setfullname", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136337,9 +136368,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_addiban", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136348,9 +136379,9 @@ "source_location": "L105", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_removeiban", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136359,9 +136390,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setactive", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136370,9 +136401,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setbankaccount", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136381,9 +136412,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setcityid", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136392,9 +136423,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setcommissionpercent", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "references", @@ -136403,9 +136434,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_representation_representation_setmobilenumber", - "target": "src_representation_entity_representation_php_self", - "confidence_score": 1.0 + "target": "src_representation_entity_representation_php_self" }, { "relation": "calls", @@ -136414,9 +136445,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setmobilenumber", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136425,9 +136456,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setcityid", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136436,9 +136467,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setcommissionpercent", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136447,9 +136478,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setbankaccount", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136458,9 +136489,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_setactive", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136469,9 +136500,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_addiban", - "target": "entity_representation_representation_getibans", - "confidence_score": 1.0 + "target": "entity_representation_representation_getibans" }, { "relation": "calls", @@ -136480,9 +136511,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_findverifiediban", - "target": "entity_representation_representation_getibans", - "confidence_score": 1.0 + "target": "entity_representation_representation_getibans" }, { "relation": "calls", @@ -136491,9 +136522,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_removeiban", - "target": "entity_representation_representation_getibans", - "confidence_score": 1.0 + "target": "entity_representation_representation_getibans" }, { "relation": "calls", @@ -136502,9 +136533,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_addiban", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "calls", @@ -136513,9 +136544,9 @@ "source_file": "src/Representation/Entity/Representation.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_representation_representation_removeiban", - "target": "entity_representation_representation_touch", - "confidence_score": 1.0 + "target": "entity_representation_representation_touch" }, { "relation": "contains", @@ -136523,9 +136554,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository", - "target": "repository_representationrepository_representationrepository", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository" }, { "relation": "imports", @@ -136534,9 +136565,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository", - "target": "src_representation_repository_representationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_managerregistry" }, { "relation": "imports", @@ -136545,9 +136576,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "imports", @@ -136556,9 +136587,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository", - "target": "src_representation_repository_representationrepository_php_user", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_user" }, { "relation": "method", @@ -136566,9 +136597,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_construct", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_construct" }, { "relation": "method", @@ -136576,9 +136607,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_findactivebycityid", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_findactivebycityid" }, { "relation": "method", @@ -136586,9 +136617,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_findbyuser" }, { "relation": "method", @@ -136596,9 +136627,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_findbyuuid" }, { "relation": "method", @@ -136606,9 +136637,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_remove", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_remove" }, { "relation": "method", @@ -136616,9 +136647,9 @@ "source_file": "src/Representation/Repository/RepresentationRepository.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository", - "target": "repository_representationrepository_representationrepository_save", - "confidence_score": 1.0 + "target": "repository_representationrepository_representationrepository_save" }, { "relation": "references", @@ -136627,9 +136658,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_construct", - "target": "src_representation_repository_representationrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_managerregistry" }, { "relation": "references_constant", @@ -136648,9 +136679,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_findbyuuid", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "references", @@ -136659,9 +136690,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_findactivebycityid", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "references", @@ -136670,9 +136701,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_findbyuser", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "references", @@ -136681,9 +136712,9 @@ "source_location": "L38", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_remove", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "references", @@ -136692,9 +136723,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_save", - "target": "src_representation_repository_representationrepository_php_representation", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_representation" }, { "relation": "references", @@ -136703,9 +136734,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_representationrepository_representationrepository_findbyuser", - "target": "src_representation_repository_representationrepository_php_user", - "confidence_score": 1.0 + "target": "src_representation_repository_representationrepository_php_user" }, { "relation": "contains", @@ -136713,9 +136744,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice" }, { "relation": "method", @@ -136723,9 +136754,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_formatdatetime", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_formatdatetime" }, { "relation": "method", @@ -136733,9 +136764,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali" }, { "relation": "method", @@ -136743,9 +136774,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_jalalimonth", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalalimonth" }, { "relation": "method", @@ -136753,9 +136784,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_jalalimonthrange", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalalimonthrange" }, { "relation": "method", @@ -136763,9 +136794,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian" }, { "relation": "method", @@ -136773,9 +136804,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_jalaliyear", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalaliyear" }, { "relation": "method", @@ -136783,9 +136814,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_jalaliyearrange", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalaliyearrange" }, { "relation": "method", @@ -136793,9 +136824,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice", - "target": "service_jalalidateservice_jalalidateservice_tojalali", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_tojalali" }, { "relation": "references", @@ -136804,9 +136835,9 @@ "source_location": "L10", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_tojalali", - "target": "datetimeinterface", - "confidence_score": 1.0 + "target": "datetimeinterface" }, { "relation": "calls", @@ -136815,9 +136846,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_tojalali", - "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali" }, { "relation": "calls", @@ -136826,9 +136857,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_jalalimonth", - "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali" }, { "relation": "calls", @@ -136837,9 +136868,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_jalaliyear", - "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_gregoriantojalali" }, { "relation": "calls", @@ -136848,9 +136879,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_jalalimonthrange", - "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian" }, { "relation": "calls", @@ -136859,9 +136890,9 @@ "source_file": "src/Representation/Service/JalaliDateService.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "service_jalalidateservice_jalalidateservice_jalaliyearrange", - "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian", - "confidence_score": 1.0 + "target": "service_jalalidateservice_jalalidateservice_jalalitogregorian" }, { "relation": "imports", @@ -136870,9 +136901,9 @@ "source_file": "src/Schedule.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule", - "target": "scheduleproviderinterface", - "confidence_score": 1.0 + "target": "scheduleproviderinterface" }, { "relation": "contains", @@ -136880,9 +136911,9 @@ "source_file": "src/Schedule.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule", - "target": "src_schedule_schedule", - "confidence_score": 1.0 + "target": "src_schedule_schedule" }, { "relation": "implements", @@ -136890,9 +136921,9 @@ "source_file": "src/Schedule.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule_schedule", - "target": "scheduleproviderinterface", - "confidence_score": 1.0 + "target": "scheduleproviderinterface" }, { "relation": "method", @@ -136900,9 +136931,9 @@ "source_file": "src/Schedule.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule_schedule", - "target": "src_schedule_schedule_construct", - "confidence_score": 1.0 + "target": "src_schedule_schedule_construct" }, { "relation": "method", @@ -136910,9 +136941,9 @@ "source_file": "src/Schedule.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "src_schedule_schedule", - "target": "src_schedule_schedule_getschedule", - "confidence_score": 1.0 + "target": "src_schedule_schedule_getschedule" }, { "relation": "references", @@ -136921,9 +136952,9 @@ "source_location": "L20", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "src_schedule_schedule_getschedule", - "target": "symfonyschedule", - "confidence_score": 1.0 + "target": "symfonyschedule" }, { "relation": "imports", @@ -136932,9 +136963,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -136942,9 +136973,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller" }, { "relation": "imports", @@ -136953,9 +136984,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "src_secretary_controller_secretarycontroller_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_doctorsecretary" }, { "relation": "imports", @@ -136964,9 +136995,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "imports", @@ -136975,9 +137006,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "src_secretary_controller_secretarycontroller_php_request", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_request" }, { "relation": "imports", @@ -136986,9 +137017,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "inherits", @@ -136996,9 +137027,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -137006,9 +137037,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L220", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_canmanage" }, { "relation": "method", @@ -137016,9 +137047,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_construct", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_construct" }, { "relation": "method", @@ -137026,9 +137057,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_create", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_create" }, { "relation": "method", @@ -137036,9 +137067,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_deactivate", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_deactivate" }, { "relation": "method", @@ -137046,9 +137077,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_list", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_list" }, { "relation": "method", @@ -137056,9 +137087,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L199", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_listbyclinic", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_listbyclinic" }, { "relation": "method", @@ -137066,9 +137097,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_show", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_show" }, { "relation": "method", @@ -137076,9 +137107,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller", - "target": "controller_secretarycontroller_secretarycontroller_update", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_update" }, { "relation": "calls", @@ -137108,9 +137139,9 @@ "source_location": "L35", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_create", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "references", @@ -137119,9 +137150,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_create", - "target": "src_secretary_controller_secretarycontroller_php_request", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_request" }, { "relation": "references", @@ -137130,9 +137161,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_create", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137141,9 +137172,9 @@ "source_location": "L131", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_update", - "target": "src_secretary_controller_secretarycontroller_php_request", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_request" }, { "relation": "references", @@ -137152,9 +137183,9 @@ "source_location": "L220", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_canmanage", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137163,9 +137194,9 @@ "source_location": "L158", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_deactivate", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137174,9 +137205,9 @@ "source_location": "L177", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_list", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137185,9 +137216,9 @@ "source_location": "L199", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_listbyclinic", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137196,9 +137227,9 @@ "source_location": "L116", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_show", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137207,9 +137238,9 @@ "source_location": "L131", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_update", - "target": "src_secretary_controller_secretarycontroller_php_user", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_user" }, { "relation": "references", @@ -137218,9 +137249,9 @@ "source_location": "L158", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_deactivate", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "references", @@ -137229,9 +137260,9 @@ "source_location": "L177", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_list", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "references", @@ -137240,9 +137271,9 @@ "source_location": "L199", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_listbyclinic", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "references", @@ -137251,9 +137282,9 @@ "source_location": "L116", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_show", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "references", @@ -137262,9 +137293,9 @@ "source_location": "L131", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_update", - "target": "src_secretary_controller_secretarycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_secretary_controller_secretarycontroller_php_jsonresponse" }, { "relation": "calls", @@ -137273,9 +137304,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_show", - "target": "controller_secretarycontroller_secretarycontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_canmanage" }, { "relation": "calls", @@ -137284,9 +137315,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_update", - "target": "controller_secretarycontroller_secretarycontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_canmanage" }, { "relation": "calls", @@ -137295,9 +137326,9 @@ "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_secretarycontroller_secretarycontroller_deactivate", - "target": "controller_secretarycontroller_secretarycontroller_canmanage", - "confidence_score": 1.0 + "target": "controller_secretarycontroller_secretarycontroller_canmanage" }, { "relation": "references_constant", @@ -137316,9 +137347,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary" }, { "relation": "imports", @@ -137327,9 +137358,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_clinic" }, { "relation": "imports", @@ -137338,9 +137369,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_doctor" }, { "relation": "imports", @@ -137349,9 +137380,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_user", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_user" }, { "relation": "method", @@ -137359,9 +137390,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_construct", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_construct" }, { "relation": "method", @@ -137369,9 +137400,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getclinic", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getclinic" }, { "relation": "method", @@ -137379,9 +137410,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getcreatedat", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getcreatedat" }, { "relation": "method", @@ -137389,9 +137420,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getdoctor", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getdoctor" }, { "relation": "method", @@ -137399,9 +137430,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getid", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getid" }, { "relation": "method", @@ -137409,9 +137440,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getownertype", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getownertype" }, { "relation": "method", @@ -137419,9 +137450,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getpermissions", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getpermissions" }, { "relation": "method", @@ -137429,9 +137460,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getsecretary", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getsecretary" }, { "relation": "method", @@ -137439,9 +137470,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getupdatedat", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getupdatedat" }, { "relation": "method", @@ -137449,9 +137480,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_getuuid", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getuuid" }, { "relation": "method", @@ -137459,9 +137490,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_isactive", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_isactive" }, { "relation": "method", @@ -137469,9 +137500,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_mergepermissions", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_mergepermissions" }, { "relation": "method", @@ -137479,9 +137510,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_setactive", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_setactive" }, { "relation": "method", @@ -137489,9 +137520,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_setpermissions", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_setpermissions" }, { "relation": "method", @@ -137499,9 +137530,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_toarray", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_toarray" }, { "relation": "method", @@ -137509,9 +137540,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "entity_doctorsecretary_doctorsecretary_touch", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_touch" }, { "relation": "references", @@ -137520,9 +137551,9 @@ "source_location": "L48", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_clinic" }, { "relation": "references", @@ -137531,9 +137562,9 @@ "source_location": "L37", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_doctor" }, { "relation": "references", @@ -137542,9 +137573,9 @@ "source_location": "L41", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary", - "target": "src_secretary_entity_doctorsecretary_php_user", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_user" }, { "relation": "references", @@ -137553,9 +137584,9 @@ "source_location": "L64", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_construct", - "target": "src_secretary_entity_doctorsecretary_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_doctor" }, { "relation": "references", @@ -137564,9 +137595,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_getdoctor", - "target": "src_secretary_entity_doctorsecretary_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_doctor" }, { "relation": "references", @@ -137575,9 +137606,9 @@ "source_location": "L64", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_construct", - "target": "src_secretary_entity_doctorsecretary_php_user", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_user" }, { "relation": "references", @@ -137586,9 +137617,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_getsecretary", - "target": "src_secretary_entity_doctorsecretary_php_user", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_user" }, { "relation": "references", @@ -137597,9 +137628,9 @@ "source_location": "L64", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_construct", - "target": "src_secretary_entity_doctorsecretary_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_clinic" }, { "relation": "references", @@ -137608,9 +137639,9 @@ "source_location": "L81", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_getclinic", - "target": "src_secretary_entity_doctorsecretary_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_clinic" }, { "relation": "calls", @@ -137619,9 +137650,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_toarray", - "target": "entity_doctorsecretary_doctorsecretary_getuuid", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getuuid" }, { "relation": "calls", @@ -137630,9 +137661,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_mergepermissions", - "target": "entity_doctorsecretary_doctorsecretary_getpermissions", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getpermissions" }, { "relation": "calls", @@ -137641,9 +137672,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_toarray", - "target": "entity_doctorsecretary_doctorsecretary_getpermissions", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_getpermissions" }, { "relation": "calls", @@ -137652,9 +137683,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_setactive", - "target": "entity_doctorsecretary_doctorsecretary_touch", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_touch" }, { "relation": "references", @@ -137663,9 +137694,9 @@ "source_location": "L87", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_setactive", - "target": "src_secretary_entity_doctorsecretary_php_self", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_self" }, { "relation": "references", @@ -137674,9 +137705,9 @@ "source_location": "L88", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_setpermissions", - "target": "src_secretary_entity_doctorsecretary_php_self", - "confidence_score": 1.0 + "target": "src_secretary_entity_doctorsecretary_php_self" }, { "relation": "calls", @@ -137685,9 +137716,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_setpermissions", - "target": "entity_doctorsecretary_doctorsecretary_touch", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_touch" }, { "relation": "calls", @@ -137696,9 +137727,9 @@ "source_file": "src/Secretary/Entity/DoctorSecretary.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_doctorsecretary_doctorsecretary_mergepermissions", - "target": "entity_doctorsecretary_doctorsecretary_touch", - "confidence_score": 1.0 + "target": "entity_doctorsecretary_doctorsecretary_touch" }, { "relation": "contains", @@ -137706,9 +137737,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository" }, { "relation": "imports", @@ -137717,9 +137748,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic" }, { "relation": "imports", @@ -137728,9 +137759,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "imports", @@ -137739,9 +137770,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary" }, { "relation": "imports", @@ -137750,9 +137781,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "src_secretary_repository_doctorsecretaryrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_managerregistry" }, { "relation": "imports", @@ -137761,9 +137792,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "method", @@ -137771,9 +137802,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_construct", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_construct" }, { "relation": "method", @@ -137781,9 +137812,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_countactivebydoctor", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_countactivebydoctor" }, { "relation": "method", @@ -137791,9 +137822,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretary", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretary" }, { "relation": "method", @@ -137801,9 +137832,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryforclinic", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryforclinic" }, { "relation": "method", @@ -137811,9 +137842,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryfordoctor", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryfordoctor" }, { "relation": "method", @@ -137821,9 +137852,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findallactivebysecretary", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findallactivebysecretary" }, { "relation": "method", @@ -137831,9 +137862,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyclinic", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyclinic" }, { "relation": "method", @@ -137841,9 +137872,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctor", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctor" }, { "relation": "method", @@ -137851,9 +137882,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctorscope", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctorscope" }, { "relation": "method", @@ -137861,9 +137892,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyuuid" }, { "relation": "method", @@ -137871,9 +137902,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_finddoctorsbysecretaryinclinic", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_finddoctorsbysecretaryinclinic" }, { "relation": "method", @@ -137881,9 +137912,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_isdoctorinclinic", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_isdoctorinclinic" }, { "relation": "method", @@ -137891,9 +137922,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_remove", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_remove" }, { "relation": "method", @@ -137901,9 +137932,9 @@ "source_file": "src/Secretary/Repository/DoctorSecretaryRepository.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository", - "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_save", - "confidence_score": 1.0 + "target": "repository_doctorsecretaryrepository_doctorsecretaryrepository_save" }, { "relation": "references_constant", @@ -137922,9 +137953,9 @@ "source_location": "L14", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_construct", - "target": "src_secretary_repository_doctorsecretaryrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_managerregistry" }, { "relation": "references", @@ -137933,9 +137964,9 @@ "source_location": "L19", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyuuid", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary" }, { "relation": "references", @@ -137944,9 +137975,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretary", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary" }, { "relation": "references_constant", @@ -138007,9 +138038,9 @@ "source_location": "L132", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_remove", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary" }, { "relation": "references", @@ -138018,9 +138049,9 @@ "source_location": "L124", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_save", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctorsecretary" }, { "relation": "references", @@ -138029,9 +138060,9 @@ "source_location": "L24", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_countactivebydoctor", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "references", @@ -138040,9 +138071,9 @@ "source_location": "L51", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryfordoctor", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "references", @@ -138051,9 +138082,9 @@ "source_location": "L36", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctor", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "references", @@ -138062,9 +138093,9 @@ "source_location": "L42", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbydoctorscope", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "references", @@ -138073,9 +138104,9 @@ "source_location": "L106", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_isdoctorinclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_doctor" }, { "relation": "references", @@ -138084,9 +138115,9 @@ "source_location": "L51", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryfordoctor", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "references", @@ -138095,9 +138126,9 @@ "source_location": "L101", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretary", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "references", @@ -138106,9 +138137,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryforclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "references", @@ -138117,9 +138148,9 @@ "source_location": "L95", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findallactivebysecretary", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "references", @@ -138128,9 +138159,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_finddoctorsbysecretaryinclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_user", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_user" }, { "relation": "references", @@ -138139,9 +138170,9 @@ "source_location": "L62", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findactivebysecretaryforclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic" }, { "relation": "references", @@ -138150,9 +138181,9 @@ "source_location": "L112", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_findbyclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic" }, { "relation": "references", @@ -138161,9 +138192,9 @@ "source_location": "L78", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_finddoctorsbysecretaryinclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic" }, { "relation": "references", @@ -138172,9 +138203,9 @@ "source_location": "L106", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_doctorsecretaryrepository_doctorsecretaryrepository_isdoctorinclinic", - "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic", - "confidence_score": 1.0 + "target": "src_secretary_repository_doctorsecretaryrepository_php_clinic" }, { "relation": "contains", @@ -138182,9 +138213,9 @@ "source_file": "src/Secretary/Security/SecretaryPermissionChecker.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "security_secretarypermissionchecker", - "target": "security_secretarypermissionchecker_secretarypermissionchecker", - "confidence_score": 1.0 + "target": "security_secretarypermissionchecker_secretarypermissionchecker" }, { "relation": "imports", @@ -138193,9 +138224,9 @@ "source_file": "src/Secretary/Security/SecretaryPermissionChecker.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "security_secretarypermissionchecker", - "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary" }, { "relation": "method", @@ -138203,9 +138234,9 @@ "source_file": "src/Secretary/Security/SecretaryPermissionChecker.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "security_secretarypermissionchecker_secretarypermissionchecker", - "target": "security_secretarypermissionchecker_secretarypermissionchecker_can", - "confidence_score": 1.0 + "target": "security_secretarypermissionchecker_secretarypermissionchecker_can" }, { "relation": "method", @@ -138213,9 +138244,9 @@ "source_file": "src/Secretary/Security/SecretaryPermissionChecker.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "security_secretarypermissionchecker_secretarypermissionchecker", - "target": "security_secretarypermissionchecker_secretarypermissionchecker_canall", - "confidence_score": 1.0 + "target": "security_secretarypermissionchecker_secretarypermissionchecker_canall" }, { "relation": "references", @@ -138224,9 +138255,9 @@ "source_location": "L9", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_secretarypermissionchecker_secretarypermissionchecker_can", - "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary" }, { "relation": "calls", @@ -138235,9 +138266,9 @@ "source_file": "src/Secretary/Security/SecretaryPermissionChecker.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "security_secretarypermissionchecker_secretarypermissionchecker_canall", - "target": "security_secretarypermissionchecker_secretarypermissionchecker_can", - "confidence_score": 1.0 + "target": "security_secretarypermissionchecker_secretarypermissionchecker_can" }, { "relation": "references", @@ -138246,9 +138277,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "security_secretarypermissionchecker_secretarypermissionchecker_canall", - "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary", - "confidence_score": 1.0 + "target": "src_secretary_security_secretarypermissionchecker_php_doctorsecretary" }, { "relation": "imports", @@ -138257,9 +138288,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "contains", @@ -138267,9 +138298,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller" }, { "relation": "imports", @@ -138278,9 +138309,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "settlement", - "confidence_score": 1.0 + "target": "settlement" }, { "relation": "imports", @@ -138289,9 +138320,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "imports", @@ -138300,9 +138331,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "imports", @@ -138311,9 +138342,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "imports", @@ -138322,9 +138353,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller", - "target": "wallettransaction", - "confidence_score": 1.0 + "target": "wallettransaction" }, { "relation": "inherits", @@ -138332,9 +138363,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "method", @@ -138342,9 +138373,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_approve", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_approve" }, { "relation": "method", @@ -138352,9 +138383,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_balance", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_balance" }, { "relation": "method", @@ -138362,9 +138393,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_construct", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_construct" }, { "relation": "method", @@ -138372,9 +138403,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_get", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_get" }, { "relation": "method", @@ -138382,9 +138413,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L466", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_handlefileupload", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_handlefileupload" }, { "relation": "method", @@ -138392,9 +138423,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_listmine", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_listmine" }, { "relation": "method", @@ -138402,9 +138433,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_markpaid", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_markpaid" }, { "relation": "method", @@ -138412,9 +138443,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L295", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_reject", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_reject" }, { "relation": "method", @@ -138422,9 +138453,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_request", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_request" }, { "relation": "method", @@ -138432,9 +138463,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_savereceipt", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_savereceipt" }, { "relation": "method", @@ -138442,9 +138473,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_transactions", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_transactions" }, { "relation": "method", @@ -138452,9 +138483,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L364", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller", - "target": "controller_settlementcontroller_settlementcontroller_uploadreceipt", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_uploadreceipt" }, { "relation": "references", @@ -138463,9 +138494,9 @@ "source_location": "L34", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_balance", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138474,9 +138505,9 @@ "source_location": "L34", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_balance", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138485,9 +138516,9 @@ "source_location": "L243", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_approve", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138496,9 +138527,9 @@ "source_location": "L203", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_get", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138507,9 +138538,9 @@ "source_location": "L174", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_listmine", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138518,9 +138549,9 @@ "source_location": "L295", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_reject", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138529,9 +138560,9 @@ "source_location": "L101", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_request", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138540,9 +138571,9 @@ "source_location": "L70", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_transactions", - "target": "src_settlement_controller_settlementcontroller_php_user", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_user" }, { "relation": "references", @@ -138551,9 +138582,9 @@ "source_location": "L243", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_approve", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138562,9 +138593,9 @@ "source_location": "L203", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_get", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138573,9 +138604,9 @@ "source_location": "L466", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_handlefileupload", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138584,9 +138615,9 @@ "source_location": "L174", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_listmine", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138595,9 +138626,9 @@ "source_location": "L377", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_markpaid", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138606,9 +138637,9 @@ "source_location": "L295", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_reject", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138617,9 +138648,9 @@ "source_location": "L101", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_request", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138628,9 +138659,9 @@ "source_location": "L422", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_savereceipt", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138639,9 +138670,9 @@ "source_location": "L70", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_transactions", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138650,9 +138681,9 @@ "source_location": "L364", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_uploadreceipt", - "target": "src_settlement_controller_settlementcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_jsonresponse" }, { "relation": "references", @@ -138661,9 +138692,9 @@ "source_location": "L101", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_request", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138672,9 +138703,9 @@ "source_location": "L243", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_approve", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138683,9 +138714,9 @@ "source_location": "L466", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_handlefileupload", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138694,9 +138725,9 @@ "source_location": "L377", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_markpaid", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138705,9 +138736,9 @@ "source_location": "L295", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_reject", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138716,9 +138747,9 @@ "source_location": "L422", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_savereceipt", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "references", @@ -138727,9 +138758,9 @@ "source_location": "L364", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_uploadreceipt", - "target": "src_settlement_controller_settlementcontroller_php_request", - "confidence_score": 1.0 + "target": "src_settlement_controller_settlementcontroller_php_request" }, { "relation": "calls", @@ -138738,9 +138769,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L469", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_handlefileupload", - "target": "controller_settlementcontroller_settlementcontroller_get", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_get" }, { "relation": "calls", @@ -138749,9 +138780,9 @@ "source_file": "src/Settlement/Controller/SettlementController.php", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_settlementcontroller_settlementcontroller_uploadreceipt", - "target": "controller_settlementcontroller_settlementcontroller_handlefileupload", - "confidence_score": 1.0 + "target": "controller_settlementcontroller_settlementcontroller_handlefileupload" }, { "relation": "contains", @@ -138759,9 +138790,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown" }, { "relation": "imports", @@ -138770,9 +138801,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown", - "target": "src_settlement_entity_financialbreakdown_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_payment" }, { "relation": "imports", @@ -138781,9 +138812,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown", - "target": "src_settlement_entity_financialbreakdown_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_user" }, { "relation": "method", @@ -138791,9 +138822,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_construct", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_construct" }, { "relation": "method", @@ -138801,9 +138832,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_getid", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getid" }, { "relation": "method", @@ -138811,9 +138842,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_getpayment", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getpayment" }, { "relation": "method", @@ -138821,9 +138852,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_getrepresentationid", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getrepresentationid" }, { "relation": "method", @@ -138831,9 +138862,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_getsource", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getsource" }, { "relation": "method", @@ -138841,9 +138872,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_getuuid", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getuuid" }, { "relation": "method", @@ -138851,9 +138882,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "entity_financialbreakdown_financialbreakdown_toarray", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_toarray" }, { "relation": "references", @@ -138862,9 +138893,9 @@ "source_location": "L27", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "src_settlement_entity_financialbreakdown_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_payment" }, { "relation": "references", @@ -138873,9 +138904,9 @@ "source_location": "L67", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown", - "target": "src_settlement_entity_financialbreakdown_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_user" }, { "relation": "references", @@ -138884,9 +138915,9 @@ "source_location": "L74", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown_construct", - "target": "src_settlement_entity_financialbreakdown_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_payment" }, { "relation": "references", @@ -138895,9 +138926,9 @@ "source_location": "L110", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown_getpayment", - "target": "src_settlement_entity_financialbreakdown_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_payment" }, { "relation": "references", @@ -138906,9 +138937,9 @@ "source_location": "L74", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown_construct", - "target": "src_settlement_entity_financialbreakdown_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_financialbreakdown_php_user" }, { "relation": "calls", @@ -138917,9 +138948,9 @@ "source_file": "src/Settlement/Entity/FinancialBreakdown.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_financialbreakdown_financialbreakdown_toarray", - "target": "entity_financialbreakdown_financialbreakdown_getuuid", - "confidence_score": 1.0 + "target": "entity_financialbreakdown_financialbreakdown_getuuid" }, { "relation": "contains", @@ -138927,9 +138958,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement", - "target": "entity_settlement_settlement", - "confidence_score": 1.0 + "target": "entity_settlement_settlement" }, { "relation": "imports", @@ -138938,9 +138969,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement", - "target": "src_settlement_entity_settlement_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_user" }, { "relation": "method", @@ -138948,9 +138979,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_approve", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_approve" }, { "relation": "method", @@ -138958,9 +138989,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_construct", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_construct" }, { "relation": "method", @@ -138968,9 +138999,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getadminnote", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getadminnote" }, { "relation": "method", @@ -138978,9 +139009,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getamountrials", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getamountrials" }, { "relation": "method", @@ -138988,9 +139019,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getbankaccount", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getbankaccount" }, { "relation": "method", @@ -138998,9 +139029,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getid", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getid" }, { "relation": "method", @@ -139008,9 +139039,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getreceipt", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getreceipt" }, { "relation": "method", @@ -139018,9 +139049,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getstatus", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getstatus" }, { "relation": "method", @@ -139028,9 +139059,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getuser", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getuser" }, { "relation": "method", @@ -139038,9 +139069,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_getuuid", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_getuuid" }, { "relation": "method", @@ -139048,9 +139079,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_markpaid", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_markpaid" }, { "relation": "method", @@ -139058,9 +139089,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_reject", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_reject" }, { "relation": "method", @@ -139068,9 +139099,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_setreceipt", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_setreceipt" }, { "relation": "method", @@ -139078,9 +139109,9 @@ "source_file": "src/Settlement/Entity/Settlement.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "entity_settlement_settlement_toarray", - "confidence_score": 1.0 + "target": "entity_settlement_settlement_toarray" }, { "relation": "references", @@ -139089,9 +139120,9 @@ "source_location": "L27", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_settlement_settlement", - "target": "src_settlement_entity_settlement_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_user" }, { "relation": "references", @@ -139100,9 +139131,9 @@ "source_location": "L58", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_construct", - "target": "src_settlement_entity_settlement_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_user" }, { "relation": "references", @@ -139111,9 +139142,9 @@ "source_location": "L70", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_getuser", - "target": "src_settlement_entity_settlement_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_user" }, { "relation": "references", @@ -139122,9 +139153,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_setreceipt", - "target": "src_settlement_entity_settlement_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_self" }, { "relation": "references", @@ -139133,9 +139164,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_approve", - "target": "src_settlement_entity_settlement_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_self" }, { "relation": "references", @@ -139144,9 +139175,9 @@ "source_location": "L104", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_markpaid", - "target": "src_settlement_entity_settlement_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_self" }, { "relation": "references", @@ -139155,9 +139186,9 @@ "source_location": "L94", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_settlement_settlement_reject", - "target": "src_settlement_entity_settlement_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_settlement_php_self" }, { "relation": "contains", @@ -139165,9 +139196,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction", - "target": "entity_wallettransaction_wallettransaction", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction" }, { "relation": "imports", @@ -139176,9 +139207,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction", - "target": "src_settlement_entity_wallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_payment" }, { "relation": "imports", @@ -139187,9 +139218,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction", - "target": "src_settlement_entity_wallettransaction_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_user" }, { "relation": "method", @@ -139197,9 +139228,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_construct", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_construct" }, { "relation": "method", @@ -139207,9 +139238,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getamountrials", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getamountrials" }, { "relation": "method", @@ -139217,9 +139248,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getbalanceafter", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getbalanceafter" }, { "relation": "method", @@ -139227,9 +139258,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getdescription", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getdescription" }, { "relation": "method", @@ -139237,9 +139268,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getid", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getid" }, { "relation": "method", @@ -139247,9 +139278,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getpayment", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getpayment" }, { "relation": "method", @@ -139257,9 +139288,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_gettype", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_gettype" }, { "relation": "method", @@ -139267,9 +139298,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getuser", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getuser" }, { "relation": "method", @@ -139277,9 +139308,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_getuuid", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_getuuid" }, { "relation": "method", @@ -139287,9 +139318,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_setdescription", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_setdescription" }, { "relation": "method", @@ -139297,9 +139328,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_setpayment", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_setpayment" }, { "relation": "method", @@ -139307,9 +139338,9 @@ "source_file": "src/Settlement/Entity/WalletTransaction.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "entity_wallettransaction_wallettransaction_toarray", - "confidence_score": 1.0 + "target": "entity_wallettransaction_wallettransaction_toarray" }, { "relation": "references", @@ -139318,9 +139349,9 @@ "source_location": "L30", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "src_settlement_entity_wallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_payment" }, { "relation": "references", @@ -139329,9 +139360,9 @@ "source_location": "L26", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction", - "target": "src_settlement_entity_wallettransaction_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_user" }, { "relation": "references", @@ -139340,9 +139371,9 @@ "source_location": "L49", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_construct", - "target": "src_settlement_entity_wallettransaction_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_user" }, { "relation": "references", @@ -139351,9 +139382,9 @@ "source_location": "L61", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_getuser", - "target": "src_settlement_entity_wallettransaction_php_user", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_user" }, { "relation": "references", @@ -139362,9 +139393,9 @@ "source_location": "L62", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_getpayment", - "target": "src_settlement_entity_wallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_payment" }, { "relation": "references", @@ -139373,9 +139404,9 @@ "source_location": "L68", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_setpayment", - "target": "src_settlement_entity_wallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_payment" }, { "relation": "references", @@ -139384,9 +139415,9 @@ "source_location": "L68", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_setpayment", - "target": "src_settlement_entity_wallettransaction_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_self" }, { "relation": "references", @@ -139395,9 +139426,9 @@ "source_location": "L69", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_wallettransaction_wallettransaction_setdescription", - "target": "src_settlement_entity_wallettransaction_php_self", - "confidence_score": 1.0 + "target": "src_settlement_entity_wallettransaction_php_self" }, { "relation": "imports", @@ -139406,9 +139437,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository", - "target": "financialbreakdown", - "confidence_score": 1.0 + "target": "financialbreakdown" }, { "relation": "contains", @@ -139416,9 +139447,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository", - "target": "repository_financialbreakdownrepository_financialbreakdownrepository", - "confidence_score": 1.0 + "target": "repository_financialbreakdownrepository_financialbreakdownrepository" }, { "relation": "imports", @@ -139427,9 +139458,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository", - "target": "src_settlement_repository_financialbreakdownrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_financialbreakdownrepository_php_managerregistry" }, { "relation": "imports", @@ -139438,9 +139469,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository", - "target": "src_settlement_repository_financialbreakdownrepository_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_repository_financialbreakdownrepository_php_payment" }, { "relation": "method", @@ -139448,9 +139479,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository", - "target": "repository_financialbreakdownrepository_financialbreakdownrepository_construct", - "confidence_score": 1.0 + "target": "repository_financialbreakdownrepository_financialbreakdownrepository_construct" }, { "relation": "method", @@ -139458,9 +139489,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository", - "target": "repository_financialbreakdownrepository_financialbreakdownrepository_existsforpayment", - "confidence_score": 1.0 + "target": "repository_financialbreakdownrepository_financialbreakdownrepository_existsforpayment" }, { "relation": "method", @@ -139468,9 +139499,9 @@ "source_file": "src/Settlement/Repository/FinancialBreakdownRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository", - "target": "repository_financialbreakdownrepository_financialbreakdownrepository_save", - "confidence_score": 1.0 + "target": "repository_financialbreakdownrepository_financialbreakdownrepository_save" }, { "relation": "references_constant", @@ -139489,9 +139520,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository_construct", - "target": "src_settlement_repository_financialbreakdownrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_financialbreakdownrepository_php_managerregistry" }, { "relation": "references", @@ -139500,9 +139531,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository_existsforpayment", - "target": "src_settlement_repository_financialbreakdownrepository_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_repository_financialbreakdownrepository_php_payment" }, { "relation": "references", @@ -139511,9 +139542,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_financialbreakdownrepository_financialbreakdownrepository_save", - "target": "financialbreakdown", - "confidence_score": 1.0 + "target": "financialbreakdown" }, { "relation": "imports", @@ -139522,9 +139553,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice", - "target": "financialbreakdown", - "confidence_score": 1.0 + "target": "financialbreakdown" }, { "relation": "contains", @@ -139532,9 +139563,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository" }, { "relation": "imports", @@ -139543,9 +139574,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository", - "target": "settlement", - "confidence_score": 1.0 + "target": "settlement" }, { "relation": "imports", @@ -139554,9 +139585,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository", - "target": "src_settlement_repository_settlementrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_managerregistry" }, { "relation": "imports", @@ -139565,9 +139596,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository", - "target": "src_settlement_repository_settlementrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_user" }, { "relation": "method", @@ -139575,9 +139606,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_construct", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_construct" }, { "relation": "method", @@ -139585,9 +139616,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_findbyuser" }, { "relation": "method", @@ -139595,9 +139626,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_findbyuuid" }, { "relation": "method", @@ -139605,9 +139636,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_getwalletbalance", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_getwalletbalance" }, { "relation": "method", @@ -139615,9 +139646,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_save", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_save" }, { "relation": "method", @@ -139625,9 +139656,9 @@ "source_file": "src/Settlement/Repository/SettlementRepository.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository", - "target": "repository_settlementrepository_settlementrepository_sumbystatus", - "confidence_score": 1.0 + "target": "repository_settlementrepository_settlementrepository_sumbystatus" }, { "relation": "references_constant", @@ -139646,9 +139677,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_construct", - "target": "src_settlement_repository_settlementrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_managerregistry" }, { "relation": "references", @@ -139657,9 +139688,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_findbyuuid", - "target": "settlement", - "confidence_score": 1.0 + "target": "settlement" }, { "relation": "references", @@ -139668,9 +139699,9 @@ "source_location": "L56", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_save", - "target": "settlement", - "confidence_score": 1.0 + "target": "settlement" }, { "relation": "references", @@ -139679,9 +139710,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_findbyuser", - "target": "src_settlement_repository_settlementrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_user" }, { "relation": "references", @@ -139690,9 +139721,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_getwalletbalance", - "target": "src_settlement_repository_settlementrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_user" }, { "relation": "references", @@ -139701,9 +139732,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_settlementrepository_settlementrepository_sumbystatus", - "target": "src_settlement_repository_settlementrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_settlementrepository_php_user" }, { "relation": "contains", @@ -139711,9 +139742,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository", - "target": "repository_wallettransactionrepository_wallettransactionrepository", - "confidence_score": 1.0 + "target": "repository_wallettransactionrepository_wallettransactionrepository" }, { "relation": "imports", @@ -139722,9 +139753,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository", - "target": "src_settlement_repository_wallettransactionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_wallettransactionrepository_php_managerregistry" }, { "relation": "imports", @@ -139733,9 +139764,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository", - "target": "src_settlement_repository_wallettransactionrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_wallettransactionrepository_php_user" }, { "relation": "imports", @@ -139744,9 +139775,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository", - "target": "wallettransaction", - "confidence_score": 1.0 + "target": "wallettransaction" }, { "relation": "method", @@ -139754,9 +139785,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository", - "target": "repository_wallettransactionrepository_wallettransactionrepository_construct", - "confidence_score": 1.0 + "target": "repository_wallettransactionrepository_wallettransactionrepository_construct" }, { "relation": "method", @@ -139764,9 +139795,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository", - "target": "repository_wallettransactionrepository_wallettransactionrepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_wallettransactionrepository_wallettransactionrepository_findbyuser" }, { "relation": "method", @@ -139774,9 +139805,9 @@ "source_file": "src/Settlement/Repository/WalletTransactionRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository", - "target": "repository_wallettransactionrepository_wallettransactionrepository_save", - "confidence_score": 1.0 + "target": "repository_wallettransactionrepository_wallettransactionrepository_save" }, { "relation": "references", @@ -139785,9 +139816,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository_construct", - "target": "src_settlement_repository_wallettransactionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_settlement_repository_wallettransactionrepository_php_managerregistry" }, { "relation": "references_constant", @@ -139806,9 +139837,9 @@ "source_location": "L18", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository_findbyuser", - "target": "src_settlement_repository_wallettransactionrepository_php_user", - "confidence_score": 1.0 + "target": "src_settlement_repository_wallettransactionrepository_php_user" }, { "relation": "references", @@ -139817,9 +139848,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_wallettransactionrepository_wallettransactionrepository_save", - "target": "wallettransaction", - "confidence_score": 1.0 + "target": "wallettransaction" }, { "relation": "imports", @@ -139828,9 +139859,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice", - "target": "wallettransaction", - "confidence_score": 1.0 + "target": "wallettransaction" }, { "relation": "contains", @@ -139838,9 +139869,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice", - "target": "service_commissionservice_commissionservice", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice" }, { "relation": "imports", @@ -139849,9 +139880,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice", - "target": "src_settlement_service_commissionservice_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_payment" }, { "relation": "imports", @@ -139860,9 +139891,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice", - "target": "src_settlement_service_commissionservice_php_representation", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_representation" }, { "relation": "method", @@ -139870,9 +139901,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice", - "target": "service_commissionservice_commissionservice_construct", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_construct" }, { "relation": "method", @@ -139880,9 +139911,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice", - "target": "service_commissionservice_commissionservice_processappointment", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_processappointment" }, { "relation": "method", @@ -139890,9 +139921,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice", - "target": "service_commissionservice_commissionservice_processsubscription", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_processsubscription" }, { "relation": "method", @@ -139900,9 +139931,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice", - "target": "service_commissionservice_commissionservice_resolverep", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_resolverep" }, { "relation": "method", @@ -139910,9 +139941,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice", - "target": "service_commissionservice_commissionservice_settle", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_settle" }, { "relation": "calls", @@ -139921,9 +139952,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processappointment", - "target": "service_commissionservice_commissionservice_resolverep", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_resolverep" }, { "relation": "calls", @@ -139932,9 +139963,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processappointment", - "target": "service_commissionservice_commissionservice_settle", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_settle" }, { "relation": "references", @@ -139943,9 +139974,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processappointment", - "target": "src_settlement_service_commissionservice_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_payment" }, { "relation": "references", @@ -139954,9 +139985,9 @@ "source_location": "L56", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processsubscription", - "target": "src_settlement_service_commissionservice_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_payment" }, { "relation": "references", @@ -139965,9 +139996,9 @@ "source_location": "L80", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_settle", - "target": "src_settlement_service_commissionservice_php_payment", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_payment" }, { "relation": "calls", @@ -139976,9 +140007,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processsubscription", - "target": "service_commissionservice_commissionservice_resolverep", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_resolverep" }, { "relation": "calls", @@ -139987,9 +140018,9 @@ "source_file": "src/Settlement/Service/CommissionService.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_processsubscription", - "target": "service_commissionservice_commissionservice_settle", - "confidence_score": 1.0 + "target": "service_commissionservice_commissionservice_settle" }, { "relation": "references", @@ -139998,9 +140029,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_resolverep", - "target": "src_settlement_service_commissionservice_php_representation", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_representation" }, { "relation": "references", @@ -140009,9 +140040,9 @@ "source_location": "L80", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_commissionservice_commissionservice_settle", - "target": "src_settlement_service_commissionservice_php_representation", - "confidence_score": 1.0 + "target": "src_settlement_service_commissionservice_php_representation" }, { "relation": "contains", @@ -140019,9 +140050,9 @@ "source_file": "src/Shared/Constant/ErrorCodes.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "constant_errorcodes", - "target": "constant_errorcodes_errorcodes", - "confidence_score": 1.0 + "target": "constant_errorcodes_errorcodes" }, { "relation": "method", @@ -140029,9 +140060,9 @@ "source_file": "src/Shared/Constant/ErrorCodes.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "constant_errorcodes_errorcodes", - "target": "constant_errorcodes_errorcodes_message", - "confidence_score": 1.0 + "target": "constant_errorcodes_errorcodes_message" }, { "relation": "calls", @@ -140083,9 +140114,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140094,9 +140125,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller", - "target": "src_shared_controller_basecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_basecontroller_php_jsonresponse" }, { "relation": "method", @@ -140104,9 +140135,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller", - "target": "controller_basecontroller_basecontroller_error", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller_error" }, { "relation": "method", @@ -140114,9 +140145,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller", - "target": "controller_basecontroller_basecontroller_paginated", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller_paginated" }, { "relation": "method", @@ -140124,9 +140155,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller", - "target": "controller_basecontroller_basecontroller_success", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller_success" }, { "relation": "method", @@ -140134,9 +140165,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller", - "target": "controller_basecontroller_basecontroller_validationerror", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller_validationerror" }, { "relation": "imports", @@ -140145,9 +140176,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140155,9 +140186,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140166,9 +140197,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140176,9 +140207,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140187,9 +140218,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140197,9 +140228,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140208,9 +140239,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140218,9 +140249,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140229,9 +140260,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140239,9 +140270,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140250,9 +140281,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140260,9 +140291,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140271,9 +140302,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140281,9 +140312,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "imports", @@ -140292,9 +140323,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "inherits", @@ -140302,9 +140333,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_basecontroller_basecontroller", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller" }, { "relation": "calls", @@ -140313,9 +140344,9 @@ "source_file": "src/Shared/Controller/BaseController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller_paginated", - "target": "controller_basecontroller_basecontroller_success", - "confidence_score": 1.0 + "target": "controller_basecontroller_basecontroller_success" }, { "relation": "references", @@ -140324,9 +140355,9 @@ "source_location": "L10", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller_success", - "target": "src_shared_controller_basecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_basecontroller_php_jsonresponse" }, { "relation": "references", @@ -140335,9 +140366,9 @@ "source_location": "L28", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller_error", - "target": "src_shared_controller_basecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_basecontroller_php_jsonresponse" }, { "relation": "references", @@ -140346,9 +140377,9 @@ "source_location": "L19", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller_paginated", - "target": "src_shared_controller_basecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_basecontroller_php_jsonresponse" }, { "relation": "references", @@ -140357,9 +140388,9 @@ "source_location": "L37", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_basecontroller_basecontroller_validationerror", - "target": "src_shared_controller_basecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_basecontroller_php_jsonresponse" }, { "relation": "contains", @@ -140367,9 +140398,9 @@ "source_file": "src/Shared/Controller/HealthController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_healthcontroller", - "target": "controller_healthcontroller_healthcontroller", - "confidence_score": 1.0 + "target": "controller_healthcontroller_healthcontroller" }, { "relation": "imports", @@ -140378,9 +140409,9 @@ "source_file": "src/Shared/Controller/HealthController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_healthcontroller", - "target": "src_shared_controller_healthcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_healthcontroller_php_jsonresponse" }, { "relation": "method", @@ -140388,9 +140419,9 @@ "source_file": "src/Shared/Controller/HealthController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_healthcontroller_healthcontroller", - "target": "controller_healthcontroller_healthcontroller_construct", - "confidence_score": 1.0 + "target": "controller_healthcontroller_healthcontroller_construct" }, { "relation": "method", @@ -140398,9 +140429,9 @@ "source_file": "src/Shared/Controller/HealthController.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_healthcontroller_healthcontroller", - "target": "controller_healthcontroller_healthcontroller_invoke", - "confidence_score": 1.0 + "target": "controller_healthcontroller_healthcontroller_invoke" }, { "relation": "references", @@ -140409,9 +140440,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_healthcontroller_healthcontroller_invoke", - "target": "src_shared_controller_healthcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_shared_controller_healthcontroller_php_jsonresponse" }, { "relation": "contains", @@ -140419,9 +140450,9 @@ "source_file": "src/Shared/Controller/HomeController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_homecontroller", - "target": "controller_homecontroller_homecontroller", - "confidence_score": 1.0 + "target": "controller_homecontroller_homecontroller" }, { "relation": "imports", @@ -140430,9 +140461,9 @@ "source_file": "src/Shared/Controller/HomeController.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_homecontroller", - "target": "src_shared_controller_homecontroller_php_response", - "confidence_score": 1.0 + "target": "src_shared_controller_homecontroller_php_response" }, { "relation": "method", @@ -140440,9 +140471,9 @@ "source_file": "src/Shared/Controller/HomeController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_homecontroller_homecontroller", - "target": "controller_homecontroller_homecontroller_index", - "confidence_score": 1.0 + "target": "controller_homecontroller_homecontroller_index" }, { "relation": "references", @@ -140451,9 +140482,9 @@ "source_location": "L11", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_homecontroller_homecontroller_index", - "target": "src_shared_controller_homecontroller_php_response", - "confidence_score": 1.0 + "target": "src_shared_controller_homecontroller_php_response" }, { "relation": "contains", @@ -140461,9 +140492,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains", - "target": "doctrine_jsoncontains_jsoncontains", - "confidence_score": 1.0 + "target": "doctrine_jsoncontains_jsoncontains" }, { "relation": "imports", @@ -140472,9 +140503,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains", - "target": "functionnode", - "confidence_score": 1.0 + "target": "functionnode" }, { "relation": "imports", @@ -140483,9 +140514,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains", - "target": "node", - "confidence_score": 1.0 + "target": "node" }, { "relation": "imports", @@ -140494,9 +140525,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains", - "target": "parser", - "confidence_score": 1.0 + "target": "parser" }, { "relation": "imports", @@ -140505,9 +140536,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains", - "target": "sqlwalker", - "confidence_score": 1.0 + "target": "sqlwalker" }, { "relation": "method", @@ -140515,9 +140546,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains", - "target": "doctrine_jsoncontains_jsoncontains_getsql", - "confidence_score": 1.0 + "target": "doctrine_jsoncontains_jsoncontains_getsql" }, { "relation": "method", @@ -140525,9 +140556,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains", - "target": "doctrine_jsoncontains_jsoncontains_parse", - "confidence_score": 1.0 + "target": "doctrine_jsoncontains_jsoncontains_parse" }, { "relation": "inherits", @@ -140535,9 +140566,9 @@ "source_file": "src/Shared/Doctrine/JsonContains.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains", - "target": "functionnode", - "confidence_score": 1.0 + "target": "functionnode" }, { "relation": "references", @@ -140546,9 +140577,9 @@ "source_location": "L18", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains", - "target": "node", - "confidence_score": 1.0 + "target": "node" }, { "relation": "references", @@ -140557,9 +140588,9 @@ "source_location": "L20", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains_parse", - "target": "parser", - "confidence_score": 1.0 + "target": "parser" }, { "relation": "references", @@ -140568,9 +140599,9 @@ "source_location": "L30", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "doctrine_jsoncontains_jsoncontains_getsql", - "target": "sqlwalker", - "confidence_score": 1.0 + "target": "sqlwalker" }, { "relation": "contains", @@ -140578,9 +140609,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber", - "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber", - "confidence_score": 1.0 + "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber" }, { "relation": "imports", @@ -140589,9 +140620,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber", - "target": "eventsubscriberinterface", - "confidence_score": 1.0 + "target": "eventsubscriberinterface" }, { "relation": "imports", @@ -140600,9 +140631,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber", - "target": "exceptionevent", - "confidence_score": 1.0 + "target": "exceptionevent" }, { "relation": "method", @@ -140610,9 +140641,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber_exceptionsubscriber", - "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_construct", - "confidence_score": 1.0 + "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_construct" }, { "relation": "method", @@ -140620,9 +140651,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber_exceptionsubscriber", - "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_getsubscribedevents", - "confidence_score": 1.0 + "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_getsubscribedevents" }, { "relation": "method", @@ -140630,9 +140661,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber_exceptionsubscriber", - "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_onkernelexception", - "confidence_score": 1.0 + "target": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_onkernelexception" }, { "relation": "implements", @@ -140640,9 +140671,9 @@ "source_file": "src/Shared/EventSubscriber/ExceptionSubscriber.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber_exceptionsubscriber", - "target": "eventsubscriberinterface", - "confidence_score": 1.0 + "target": "eventsubscriberinterface" }, { "relation": "imports", @@ -140651,9 +140682,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber", - "target": "eventsubscriberinterface", - "confidence_score": 1.0 + "target": "eventsubscriberinterface" }, { "relation": "implements", @@ -140661,9 +140692,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber", - "target": "eventsubscriberinterface", - "confidence_score": 1.0 + "target": "eventsubscriberinterface" }, { "relation": "references", @@ -140672,9 +140703,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "eventsubscriber_exceptionsubscriber_exceptionsubscriber_onkernelexception", - "target": "exceptionevent", - "confidence_score": 1.0 + "target": "exceptionevent" }, { "relation": "contains", @@ -140682,9 +140713,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber", - "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber", - "confidence_score": 1.0 + "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber" }, { "relation": "imports", @@ -140693,9 +140724,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber", - "target": "responseevent", - "confidence_score": 1.0 + "target": "responseevent" }, { "relation": "method", @@ -140703,9 +140734,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber", - "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber_getsubscribedevents", - "confidence_score": 1.0 + "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber_getsubscribedevents" }, { "relation": "method", @@ -140713,9 +140744,9 @@ "source_file": "src/Shared/EventSubscriber/SecurityHeadersSubscriber.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber", - "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber_onkernelresponse", - "confidence_score": 1.0 + "target": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber_onkernelresponse" }, { "relation": "references", @@ -140724,9 +140755,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "eventsubscriber_securityheaderssubscriber_securityheaderssubscriber_onkernelresponse", - "target": "responseevent", - "confidence_score": 1.0 + "target": "responseevent" }, { "relation": "contains", @@ -140734,9 +140765,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception", - "target": "exception_appexception_appexception", - "confidence_score": 1.0 + "target": "exception_appexception_appexception" }, { "relation": "method", @@ -140744,9 +140775,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception_appexception", - "target": "exception_appexception_appexception_construct", - "confidence_score": 1.0 + "target": "exception_appexception_appexception_construct" }, { "relation": "method", @@ -140754,9 +140785,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception_appexception", - "target": "exception_appexception_appexception_geterrorcode", - "confidence_score": 1.0 + "target": "exception_appexception_appexception_geterrorcode" }, { "relation": "method", @@ -140764,9 +140795,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception_appexception", - "target": "exception_appexception_appexception_getfield", - "confidence_score": 1.0 + "target": "exception_appexception_appexception_getfield" }, { "relation": "method", @@ -140774,9 +140805,9 @@ "source_file": "src/Shared/Exception/AppException.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "exception_appexception_appexception", - "target": "exception_appexception_appexception_gethttpstatus", - "confidence_score": 1.0 + "target": "exception_appexception_appexception_gethttpstatus" }, { "relation": "contains", @@ -140784,9 +140815,9 @@ "source_file": "src/Shared/Message/SendSmsMessage.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage", - "target": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage" }, { "relation": "method", @@ -140794,9 +140825,9 @@ "source_file": "src/Shared/Message/SendSmsMessage.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage", - "target": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage_construct", - "confidence_score": 1.0 + "target": "src_shared_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage_construct" }, { "relation": "contains", @@ -140804,9 +140835,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice", - "target": "service_apiirservice_apiirservice", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice" }, { "relation": "method", @@ -140814,9 +140845,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_construct", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_construct" }, { "relation": "method", @@ -140824,9 +140855,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_extractmatched", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_extractmatched" }, { "relation": "method", @@ -140834,9 +140865,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_ibanmatch", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_ibanmatch" }, { "relation": "method", @@ -140844,9 +140875,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_isconfigured", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_isconfigured" }, { "relation": "method", @@ -140854,9 +140885,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_post", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_post" }, { "relation": "method", @@ -140864,9 +140895,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice", - "target": "service_apiirservice_apiirservice_shahkarmatch", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_shahkarmatch" }, { "relation": "calls", @@ -140875,9 +140906,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice_post", - "target": "service_apiirservice_apiirservice_isconfigured", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_isconfigured" }, { "relation": "calls", @@ -140886,9 +140917,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice_shahkarmatch", - "target": "service_apiirservice_apiirservice_extractmatched", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_extractmatched" }, { "relation": "calls", @@ -140897,9 +140928,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice_shahkarmatch", - "target": "service_apiirservice_apiirservice_post", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_post" }, { "relation": "calls", @@ -140908,9 +140939,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice_ibanmatch", - "target": "service_apiirservice_apiirservice_extractmatched", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_extractmatched" }, { "relation": "calls", @@ -140919,9 +140950,9 @@ "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "service_apiirservice_apiirservice_ibanmatch", - "target": "service_apiirservice_apiirservice_post", - "confidence_score": 1.0 + "target": "service_apiirservice_apiirservice_post" }, { "relation": "contains", @@ -140929,9 +140960,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice" }, { "relation": "imports", @@ -140940,9 +140971,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice", - "target": "uploadedfile", - "confidence_score": 1.0 + "target": "uploadedfile" }, { "relation": "method", @@ -140950,9 +140981,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice_construct", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_construct" }, { "relation": "method", @@ -140960,9 +140991,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice_detectmimetype", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_detectmimetype" }, { "relation": "method", @@ -140970,9 +141001,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice_sanitizefilename", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_sanitizefilename" }, { "relation": "method", @@ -140980,9 +141011,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice_validate", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_validate" }, { "relation": "method", @@ -140990,9 +141021,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice", - "target": "service_filevalidatorservice_filevalidatorservice_validateuploadedfile", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_validateuploadedfile" }, { "relation": "calls", @@ -141001,9 +141032,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice_validateuploadedfile", - "target": "service_filevalidatorservice_filevalidatorservice_validate", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_validate" }, { "relation": "references", @@ -141012,9 +141043,9 @@ "source_location": "L21", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice_validateuploadedfile", - "target": "uploadedfile", - "confidence_score": 1.0 + "target": "uploadedfile" }, { "relation": "calls", @@ -141023,9 +141054,9 @@ "source_file": "src/Shared/Service/FileValidatorService.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "service_filevalidatorservice_filevalidatorservice_validate", - "target": "service_filevalidatorservice_filevalidatorservice_sanitizefilename", - "confidence_score": 1.0 + "target": "service_filevalidatorservice_filevalidatorservice_sanitizefilename" }, { "relation": "contains", @@ -141033,9 +141064,9 @@ "source_file": "src/Shared/Service/InputValidator.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_inputvalidator", - "target": "service_inputvalidator_inputvalidator", - "confidence_score": 1.0 + "target": "service_inputvalidator_inputvalidator" }, { "relation": "calls", @@ -141054,9 +141085,9 @@ "source_file": "src/Shared/Service/InputValidator.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_inputvalidator_inputvalidator", - "target": "service_inputvalidator_inputvalidator_isvalidiranmobile", - "confidence_score": 1.0 + "target": "service_inputvalidator_inputvalidator_isvalidiranmobile" }, { "relation": "method", @@ -141064,9 +141095,9 @@ "source_file": "src/Shared/Service/InputValidator.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "service_inputvalidator_inputvalidator", - "target": "service_inputvalidator_inputvalidator_isvalidirannationalcode", - "confidence_score": 1.0 + "target": "service_inputvalidator_inputvalidator_isvalidirannationalcode" }, { "relation": "method", @@ -141074,9 +141105,9 @@ "source_file": "src/Shared/Service/InputValidator.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "service_inputvalidator_inputvalidator", - "target": "service_inputvalidator_inputvalidator_maskmobile", - "confidence_score": 1.0 + "target": "service_inputvalidator_inputvalidator_maskmobile" }, { "relation": "method", @@ -141084,9 +141115,9 @@ "source_file": "src/Shared/Service/InputValidator.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "service_inputvalidator_inputvalidator", - "target": "service_inputvalidator_inputvalidator_toenglishdigits", - "confidence_score": 1.0 + "target": "service_inputvalidator_inputvalidator_toenglishdigits" }, { "relation": "contains", @@ -141094,9 +141125,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand", - "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand", - "confidence_score": 1.0 + "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand" }, { "relation": "imports", @@ -141105,9 +141136,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "imports", @@ -141116,9 +141147,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand", - "target": "src_sms_command_seedsmsmessagetemplatescommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_sms_command_seedsmsmessagetemplatescommand_php_inputinterface" }, { "relation": "imports", @@ -141127,9 +141158,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand", - "target": "src_sms_command_seedsmsmessagetemplatescommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_sms_command_seedsmsmessagetemplatescommand_php_outputinterface" }, { "relation": "method", @@ -141137,9 +141168,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand", - "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_construct", - "confidence_score": 1.0 + "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_construct" }, { "relation": "method", @@ -141147,9 +141178,9 @@ "source_file": "src/Sms/Command/SeedSmsMessageTemplatesCommand.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand", - "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_execute", - "confidence_score": 1.0 + "target": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_execute" }, { "relation": "references", @@ -141158,9 +141189,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_execute", - "target": "src_sms_command_seedsmsmessagetemplatescommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_sms_command_seedsmsmessagetemplatescommand_php_inputinterface" }, { "relation": "references", @@ -141169,9 +141200,9 @@ "source_location": "L23", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_execute", - "target": "src_sms_command_seedsmsmessagetemplatescommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_sms_command_seedsmsmessagetemplatescommand_php_outputinterface" }, { "relation": "contains", @@ -141179,9 +141210,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller", - "target": "controller_smscontroller_smscontroller", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller" }, { "relation": "imports", @@ -141190,9 +141221,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "imports", @@ -141201,9 +141232,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "imports", @@ -141212,9 +141243,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "method", @@ -141222,9 +141253,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_approvetemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_approvetemplate" }, { "relation": "method", @@ -141232,9 +141263,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_construct", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_construct" }, { "relation": "method", @@ -141242,9 +141273,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_createtemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_createtemplate" }, { "relation": "method", @@ -141252,9 +141283,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_deletetemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_deletetemplate" }, { "relation": "method", @@ -141262,9 +141293,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_gettemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_gettemplate" }, { "relation": "method", @@ -141272,9 +141303,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L302", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_listtemplates", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_listtemplates" }, { "relation": "method", @@ -141282,9 +141313,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L378", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_rejecttemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_rejecttemplate" }, { "relation": "method", @@ -141292,9 +141323,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_send", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_send" }, { "relation": "method", @@ -141302,9 +141333,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L433", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_sendviatemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_sendviatemplate" }, { "relation": "method", @@ -141312,9 +141343,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_submittemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_submittemplate" }, { "relation": "method", @@ -141322,9 +141353,9 @@ "source_file": "src/Sms/Controller/SmsController.php", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller", - "target": "controller_smscontroller_smscontroller_updatetemplate", - "confidence_score": 1.0 + "target": "controller_smscontroller_smscontroller_updatetemplate" }, { "relation": "references", @@ -141333,9 +141364,9 @@ "source_location": "L29", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_send", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141344,9 +141375,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_send", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141355,9 +141386,9 @@ "source_location": "L329", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_approvetemplate", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141366,9 +141397,9 @@ "source_location": "L82", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_createtemplate", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141377,9 +141408,9 @@ "source_location": "L378", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_rejecttemplate", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141388,9 +141419,9 @@ "source_location": "L433", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_sendviatemplate", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141399,9 +141430,9 @@ "source_location": "L164", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_updatetemplate", - "target": "src_sms_controller_smscontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_request" }, { "relation": "references", @@ -141410,9 +141441,9 @@ "source_location": "L329", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_approvetemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141421,9 +141452,9 @@ "source_location": "L82", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_createtemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141432,9 +141463,9 @@ "source_location": "L263", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_deletetemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141443,9 +141474,9 @@ "source_location": "L132", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_gettemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141454,9 +141485,9 @@ "source_location": "L302", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_listtemplates", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141465,9 +141496,9 @@ "source_location": "L378", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_rejecttemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141476,9 +141507,9 @@ "source_location": "L433", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_sendviatemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141487,9 +141518,9 @@ "source_location": "L225", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_submittemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "references", @@ -141498,9 +141529,9 @@ "source_location": "L164", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smscontroller_smscontroller_updatetemplate", - "target": "src_sms_controller_smscontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smscontroller_php_jsonresponse" }, { "relation": "contains", @@ -141508,9 +141539,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller", - "target": "controller_smsmessagecontroller_smsmessagecontroller", - "confidence_score": 1.0 + "target": "controller_smsmessagecontroller_smsmessagecontroller" }, { "relation": "imports", @@ -141519,9 +141550,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "imports", @@ -141530,9 +141561,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller", - "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse" }, { "relation": "imports", @@ -141541,9 +141572,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller", - "target": "src_sms_controller_smsmessagecontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smsmessagecontroller_php_request" }, { "relation": "method", @@ -141551,9 +141582,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller", - "target": "controller_smsmessagecontroller_smsmessagecontroller_construct", - "confidence_score": 1.0 + "target": "controller_smsmessagecontroller_smsmessagecontroller_construct" }, { "relation": "method", @@ -141561,9 +141592,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller", - "target": "controller_smsmessagecontroller_smsmessagecontroller_list", - "confidence_score": 1.0 + "target": "controller_smsmessagecontroller_smsmessagecontroller_list" }, { "relation": "method", @@ -141571,9 +141602,9 @@ "source_file": "src/Sms/Controller/SmsMessageController.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller", - "target": "controller_smsmessagecontroller_smsmessagecontroller_update", - "confidence_score": 1.0 + "target": "controller_smsmessagecontroller_smsmessagecontroller_update" }, { "relation": "references", @@ -141582,9 +141613,9 @@ "source_location": "L26", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller_list", - "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse" }, { "relation": "references", @@ -141593,9 +141624,9 @@ "source_location": "L55", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller_update", - "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smsmessagecontroller_php_jsonresponse" }, { "relation": "references", @@ -141604,9 +141635,9 @@ "source_location": "L55", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smsmessagecontroller_smsmessagecontroller_update", - "target": "src_sms_controller_smsmessagecontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smsmessagecontroller_php_request" }, { "relation": "contains", @@ -141614,9 +141645,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller" }, { "relation": "imports", @@ -141625,9 +141656,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "smssettings", - "confidence_score": 1.0 + "target": "smssettings" }, { "relation": "imports", @@ -141636,9 +141667,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "imports", @@ -141647,9 +141678,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "imports", @@ -141658,9 +141689,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "method", @@ -141668,9 +141699,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_adminapprove", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_adminapprove" }, { "relation": "method", @@ -141678,9 +141709,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_adminreject", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_adminreject" }, { "relation": "method", @@ -141688,9 +141719,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L266", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_adminreport", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_adminreport" }, { "relation": "method", @@ -141698,9 +141729,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist" }, { "relation": "method", @@ -141708,9 +141739,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_balance", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_balance" }, { "relation": "method", @@ -141718,9 +141749,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_charge", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_charge" }, { "relation": "method", @@ -141728,9 +141759,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_construct", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_construct" }, { "relation": "method", @@ -141738,9 +141769,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_getsettings", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_getsettings" }, { "relation": "method", @@ -141748,9 +141779,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_logs", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_logs" }, { "relation": "method", @@ -141758,9 +141789,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "method", @@ -141768,9 +141799,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L255", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname" }, { "relation": "method", @@ -141778,9 +141809,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller", - "target": "controller_smswalletcontroller_smswalletcontroller_updatesettings", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_updatesettings" }, { "relation": "calls", @@ -141789,9 +141820,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_balance", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "references", @@ -141800,9 +141831,9 @@ "source_location": "L47", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_balance", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141811,9 +141842,9 @@ "source_location": "L47", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_balance", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141822,9 +141853,9 @@ "source_location": "L66", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_charge", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141833,9 +141864,9 @@ "source_location": "L141", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_getsettings", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141844,9 +141875,9 @@ "source_location": "L118", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_logs", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141855,9 +141886,9 @@ "source_location": "L288", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141866,9 +141897,9 @@ "source_location": "L165", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", - "target": "src_sms_controller_smswalletcontroller_php_user", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_user" }, { "relation": "references", @@ -141877,9 +141908,9 @@ "source_location": "L219", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminapprove", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141888,9 +141919,9 @@ "source_location": "L234", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreject", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141899,9 +141930,9 @@ "source_location": "L266", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreport", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141910,9 +141941,9 @@ "source_location": "L195", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141921,9 +141952,9 @@ "source_location": "L66", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_charge", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141932,9 +141963,9 @@ "source_location": "L141", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_getsettings", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141943,9 +141974,9 @@ "source_location": "L118", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_logs", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "references", @@ -141954,9 +141985,9 @@ "source_location": "L165", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", - "target": "src_sms_controller_smswalletcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_jsonresponse" }, { "relation": "calls", @@ -141965,9 +141996,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_charge", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "references", @@ -141976,9 +142007,9 @@ "source_location": "L66", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_charge", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "references", @@ -141987,9 +142018,9 @@ "source_location": "L234", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreject", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "references", @@ -141998,9 +142029,9 @@ "source_location": "L266", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreport", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "references", @@ -142009,9 +142040,9 @@ "source_location": "L195", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "references", @@ -142020,9 +142051,9 @@ "source_location": "L118", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_logs", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "references", @@ -142031,9 +142062,9 @@ "source_location": "L165", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", - "target": "src_sms_controller_smswalletcontroller_php_request", - "confidence_score": 1.0 + "target": "src_sms_controller_smswalletcontroller_php_request" }, { "relation": "calls", @@ -142042,9 +142073,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_logs", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "calls", @@ -142053,9 +142084,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_getsettings", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "calls", @@ -142064,9 +142095,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity" }, { "relation": "calls", @@ -142075,9 +142106,9 @@ "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L212", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", - "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", - "confidence_score": 1.0 + "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname" }, { "relation": "contains", @@ -142085,9 +142116,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog", - "target": "entity_smslog_smslog", - "confidence_score": 1.0 + "target": "entity_smslog_smslog" }, { "relation": "method", @@ -142095,9 +142126,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog_smslog", - "target": "entity_smslog_smslog_construct", - "confidence_score": 1.0 + "target": "entity_smslog_smslog_construct" }, { "relation": "method", @@ -142105,9 +142136,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog_smslog", - "target": "entity_smslog_smslog_gettag", - "confidence_score": 1.0 + "target": "entity_smslog_smslog_gettag" }, { "relation": "method", @@ -142115,9 +142146,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog_smslog", - "target": "entity_smslog_smslog_settag", - "confidence_score": 1.0 + "target": "entity_smslog_smslog_settag" }, { "relation": "method", @@ -142125,9 +142156,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog_smslog", - "target": "entity_smslog_smslog_settemplateuuid", - "confidence_score": 1.0 + "target": "entity_smslog_smslog_settemplateuuid" }, { "relation": "method", @@ -142135,9 +142166,9 @@ "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smslog_smslog", - "target": "entity_smslog_smslog_toarray", - "confidence_score": 1.0 + "target": "entity_smslog_smslog_toarray" }, { "relation": "references", @@ -142146,9 +142177,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smslog_smslog_settemplateuuid", - "target": "src_sms_entity_smslog_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smslog_php_self" }, { "relation": "references", @@ -142157,9 +142188,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smslog_smslog_settag", - "target": "src_sms_entity_smslog_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smslog_php_self" }, { "relation": "contains", @@ -142167,9 +142198,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate" }, { "relation": "method", @@ -142177,9 +142208,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_construct", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_construct" }, { "relation": "method", @@ -142187,9 +142218,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_getbody", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_getbody" }, { "relation": "method", @@ -142197,9 +142228,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_getid", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_getid" }, { "relation": "method", @@ -142207,9 +142238,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_gettag", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_gettag" }, { "relation": "method", @@ -142217,9 +142248,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_gettitle", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_gettitle" }, { "relation": "method", @@ -142227,9 +142258,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_getupdatedat", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_getupdatedat" }, { "relation": "method", @@ -142237,9 +142268,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_getvariables", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_getvariables" }, { "relation": "method", @@ -142247,9 +142278,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_setbody", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_setbody" }, { "relation": "method", @@ -142257,9 +142288,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_settitle", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_settitle" }, { "relation": "method", @@ -142267,9 +142298,9 @@ "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate", - "target": "entity_smsmessagetemplate_smsmessagetemplate_toarray", - "confidence_score": 1.0 + "target": "entity_smsmessagetemplate_smsmessagetemplate_toarray" }, { "relation": "references", @@ -142278,9 +142309,9 @@ "source_location": "L83", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate_settitle", - "target": "src_sms_entity_smsmessagetemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smsmessagetemplate_php_self" }, { "relation": "references", @@ -142289,9 +142320,9 @@ "source_location": "L84", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smsmessagetemplate_smsmessagetemplate_setbody", - "target": "src_sms_entity_smsmessagetemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smsmessagetemplate_php_self" }, { "relation": "contains", @@ -142299,9 +142330,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings", - "target": "entity_smssettings_smssettings", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings" }, { "relation": "method", @@ -142309,9 +142340,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_approvepostvisittext", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_approvepostvisittext" }, { "relation": "method", @@ -142319,9 +142350,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_construct", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_construct" }, { "relation": "method", @@ -142329,9 +142360,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getentityid", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getentityid" }, { "relation": "method", @@ -142339,9 +142370,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getentitytype", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getentitytype" }, { "relation": "method", @@ -142349,9 +142380,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getid", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getid" }, { "relation": "method", @@ -142359,9 +142390,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getpostvisittext", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getpostvisittext" }, { "relation": "method", @@ -142369,9 +142400,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getpostvisittextpending", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getpostvisittextpending" }, { "relation": "method", @@ -142379,9 +142410,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getpostvisittextrejectreason", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getpostvisittextrejectreason" }, { "relation": "method", @@ -142389,9 +142420,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getpostvisittextstatus", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getpostvisittextstatus" }, { "relation": "method", @@ -142399,9 +142430,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_getreminderhoursbefore", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_getreminderhoursbefore" }, { "relation": "method", @@ -142409,9 +142440,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_ispostvisitenabled", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_ispostvisitenabled" }, { "relation": "method", @@ -142419,9 +142450,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_isreminderenabled", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_isreminderenabled" }, { "relation": "method", @@ -142429,9 +142460,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_rejectpostvisittext", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_rejectpostvisittext" }, { "relation": "method", @@ -142439,9 +142470,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_setpostvisitenabled", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_setpostvisitenabled" }, { "relation": "method", @@ -142449,9 +142480,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_setpostvisittext", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_setpostvisittext" }, { "relation": "method", @@ -142459,9 +142490,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_setreminderenabled", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_setreminderenabled" }, { "relation": "method", @@ -142469,9 +142500,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_setreminderhoursbefore", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_setreminderhoursbefore" }, { "relation": "method", @@ -142479,9 +142510,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_submitpostvisittext", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_submitpostvisittext" }, { "relation": "method", @@ -142489,9 +142520,9 @@ "source_file": "src/Sms/Entity/SmsSettings.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smssettings_smssettings", - "target": "entity_smssettings_smssettings_toarray", - "confidence_score": 1.0 + "target": "entity_smssettings_smssettings_toarray" }, { "relation": "references", @@ -142500,9 +142531,9 @@ "source_location": "L72", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_setreminderenabled", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142511,9 +142542,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_approvepostvisittext", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142522,9 +142553,9 @@ "source_location": "L97", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_rejectpostvisittext", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142533,9 +142564,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_setpostvisitenabled", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142544,9 +142575,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_setpostvisittext", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142555,9 +142586,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_setreminderhoursbefore", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "references", @@ -142566,9 +142597,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smssettings_smssettings_submitpostvisittext", - "target": "src_sms_entity_smssettings_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smssettings_php_self" }, { "relation": "contains", @@ -142576,9 +142607,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate", - "target": "entity_smstemplate_smstemplate", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate" }, { "relation": "method", @@ -142586,9 +142617,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_approve", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_approve" }, { "relation": "method", @@ -142596,9 +142627,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_construct", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_construct" }, { "relation": "method", @@ -142606,9 +142637,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getadminnote", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getadminnote" }, { "relation": "method", @@ -142616,9 +142647,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getbody", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getbody" }, { "relation": "method", @@ -142626,9 +142657,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getid", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getid" }, { "relation": "method", @@ -142636,9 +142667,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getname", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getname" }, { "relation": "method", @@ -142646,9 +142677,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getprovidercode", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getprovidercode" }, { "relation": "method", @@ -142656,9 +142687,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getstatus", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getstatus" }, { "relation": "method", @@ -142666,9 +142697,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getuuid", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getuuid" }, { "relation": "method", @@ -142676,9 +142707,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_getvariables", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_getvariables" }, { "relation": "method", @@ -142686,9 +142717,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_reject", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_reject" }, { "relation": "method", @@ -142696,9 +142727,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_renderbody", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_renderbody" }, { "relation": "method", @@ -142706,9 +142737,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_reverttodraft", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_reverttodraft" }, { "relation": "method", @@ -142716,9 +142747,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_setbody", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_setbody" }, { "relation": "method", @@ -142726,9 +142757,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_setname", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_setname" }, { "relation": "method", @@ -142736,9 +142767,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_setprovidercode", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_setprovidercode" }, { "relation": "method", @@ -142746,9 +142777,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_setvariables", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_setvariables" }, { "relation": "method", @@ -142756,9 +142787,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_submitforreview", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_submitforreview" }, { "relation": "method", @@ -142766,9 +142797,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_toarray", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_toarray" }, { "relation": "method", @@ -142776,9 +142807,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142787,9 +142818,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setname", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "references", @@ -142798,9 +142829,9 @@ "source_location": "L68", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setname", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142809,9 +142840,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_approve", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142820,9 +142851,9 @@ "source_location": "L85", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_reject", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142831,9 +142862,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_reverttodraft", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142842,9 +142873,9 @@ "source_location": "L69", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setbody", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142853,9 +142884,9 @@ "source_location": "L70", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setprovidercode", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142864,9 +142895,9 @@ "source_location": "L71", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setvariables", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "references", @@ -142875,9 +142906,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_submitforreview", - "target": "src_sms_entity_smstemplate_php_self", - "confidence_score": 1.0 + "target": "src_sms_entity_smstemplate_php_self" }, { "relation": "calls", @@ -142886,9 +142917,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setbody", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142897,9 +142928,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setprovidercode", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142908,9 +142939,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_setvariables", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142919,9 +142950,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_submitforreview", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142930,9 +142961,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_reverttodraft", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142941,9 +142972,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_approve", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "calls", @@ -142952,9 +142983,9 @@ "source_file": "src/Sms/Entity/SmsTemplate.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smstemplate_smstemplate_reject", - "target": "entity_smstemplate_smstemplate_touch", - "confidence_score": 1.0 + "target": "entity_smstemplate_smstemplate_touch" }, { "relation": "contains", @@ -142962,9 +142993,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet", - "target": "entity_smswallet_smswallet", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet" }, { "relation": "method", @@ -142972,9 +143003,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_construct", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_construct" }, { "relation": "method", @@ -142982,9 +143013,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_credit", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_credit" }, { "relation": "method", @@ -142992,9 +143023,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_debit", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_debit" }, { "relation": "method", @@ -143002,9 +143033,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_getbalancerials", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_getbalancerials" }, { "relation": "method", @@ -143012,9 +143043,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_getentityid", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_getentityid" }, { "relation": "method", @@ -143022,9 +143053,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_getentitytype", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_getentitytype" }, { "relation": "method", @@ -143032,9 +143063,9 @@ "source_file": "src/Sms/Entity/SmsWallet.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallet_smswallet", - "target": "entity_smswallet_smswallet_getid", - "confidence_score": 1.0 + "target": "entity_smswallet_smswallet_getid" }, { "relation": "contains", @@ -143042,9 +143073,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction" }, { "relation": "imports", @@ -143053,9 +143084,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction", - "target": "src_sms_entity_smswallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_sms_entity_smswallettransaction_php_payment" }, { "relation": "method", @@ -143063,9 +143094,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_construct", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_construct" }, { "relation": "method", @@ -143073,9 +143104,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_getamountrials", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_getamountrials" }, { "relation": "method", @@ -143083,9 +143114,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_getcreatedat", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_getcreatedat" }, { "relation": "method", @@ -143093,9 +143124,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_getdescription", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_getdescription" }, { "relation": "method", @@ -143103,9 +143134,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_getid", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_getid" }, { "relation": "method", @@ -143113,9 +143144,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_gettype", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_gettype" }, { "relation": "method", @@ -143123,9 +143154,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_getuuid", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_getuuid" }, { "relation": "method", @@ -143133,9 +143164,9 @@ "source_file": "src/Sms/Entity/SmsWalletTransaction.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "entity_smswallettransaction_smswallettransaction_toarray", - "confidence_score": 1.0 + "target": "entity_smswallettransaction_smswallettransaction_toarray" }, { "relation": "references", @@ -143144,9 +143175,9 @@ "source_location": "L38", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "src_sms_entity_smswallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_sms_entity_smswallettransaction_php_payment" }, { "relation": "references", @@ -143155,9 +143186,9 @@ "source_location": "L25", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction", - "target": "src_sms_entity_smswallettransaction_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_entity_smswallettransaction_php_smswallet" }, { "relation": "references", @@ -143166,9 +143197,9 @@ "source_location": "L45", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction_construct", - "target": "src_sms_entity_smswallettransaction_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_entity_smswallettransaction_php_smswallet" }, { "relation": "references", @@ -143177,9 +143208,9 @@ "source_location": "L45", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_smswallettransaction_smswallettransaction_construct", - "target": "src_sms_entity_smswallettransaction_php_payment", - "confidence_score": 1.0 + "target": "src_sms_entity_smswallettransaction_php_payment" }, { "relation": "contains", @@ -143187,9 +143218,9 @@ "source_file": "src/Sms/Message/SendSmsMessage.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage", - "target": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage" }, { "relation": "method", @@ -143197,9 +143228,9 @@ "source_file": "src/Sms/Message/SendSmsMessage.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage", - "target": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage_construct", - "confidence_score": 1.0 + "target": "src_sms_message_sendsmsmessage_php_message_sendsmsmessage_sendsmsmessage_construct" }, { "relation": "contains", @@ -143207,9 +143238,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider" }, { "relation": "method", @@ -143217,9 +143248,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_construct", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_construct" }, { "relation": "method", @@ -143227,9 +143258,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_getname", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_getname" }, { "relation": "method", @@ -143237,9 +143268,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_key", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_key" }, { "relation": "method", @@ -143247,9 +143278,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_send", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_send" }, { "relation": "method", @@ -143257,9 +143288,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_sender", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_sender" }, { "relation": "method", @@ -143267,9 +143298,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate" }, { "relation": "implements", @@ -143277,9 +143308,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider", - "target": "src_sms_service_smsservice_php_smsproviderinterface", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_smsproviderinterface" }, { "relation": "calls", @@ -143288,9 +143319,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider_send", - "target": "provider_kavehnegarprovider_kavehnegarprovider_key", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_key" }, { "relation": "calls", @@ -143299,9 +143330,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", - "target": "provider_kavehnegarprovider_kavehnegarprovider_key", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_key" }, { "relation": "calls", @@ -143310,9 +143341,9 @@ "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_kavehnegarprovider_kavehnegarprovider_send", - "target": "provider_kavehnegarprovider_kavehnegarprovider_sender", - "confidence_score": 1.0 + "target": "provider_kavehnegarprovider_kavehnegarprovider_sender" }, { "relation": "contains", @@ -143320,9 +143351,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider", - "target": "provider_ranginehprovider_ranginehprovider", - "confidence_score": 1.0 + "target": "provider_ranginehprovider_ranginehprovider" }, { "relation": "method", @@ -143330,9 +143361,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider_ranginehprovider", - "target": "provider_ranginehprovider_ranginehprovider_construct", - "confidence_score": 1.0 + "target": "provider_ranginehprovider_ranginehprovider_construct" }, { "relation": "method", @@ -143340,9 +143371,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider_ranginehprovider", - "target": "provider_ranginehprovider_ranginehprovider_getname", - "confidence_score": 1.0 + "target": "provider_ranginehprovider_ranginehprovider_getname" }, { "relation": "method", @@ -143350,9 +143381,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider_ranginehprovider", - "target": "provider_ranginehprovider_ranginehprovider_send", - "confidence_score": 1.0 + "target": "provider_ranginehprovider_ranginehprovider_send" }, { "relation": "method", @@ -143360,9 +143391,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider_ranginehprovider", - "target": "provider_ranginehprovider_ranginehprovider_sendtemplate", - "confidence_score": 1.0 + "target": "provider_ranginehprovider_ranginehprovider_sendtemplate" }, { "relation": "implements", @@ -143370,9 +143401,9 @@ "source_file": "src/Sms/Provider/RanginehProvider.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_ranginehprovider_ranginehprovider", - "target": "src_sms_service_smsservice_php_smsproviderinterface", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_smsproviderinterface" }, { "relation": "contains", @@ -143380,9 +143411,9 @@ "source_file": "src/Sms/Provider/SmsProviderInterface.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_smsproviderinterface", - "target": "provider_smsproviderinterface_getname", - "confidence_score": 1.0 + "target": "provider_smsproviderinterface_getname" }, { "relation": "contains", @@ -143390,9 +143421,9 @@ "source_file": "src/Sms/Provider/SmsProviderInterface.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_smsproviderinterface", - "target": "provider_smsproviderinterface_send", - "confidence_score": 1.0 + "target": "provider_smsproviderinterface_send" }, { "relation": "contains", @@ -143400,9 +143431,9 @@ "source_file": "src/Sms/Provider/SmsProviderInterface.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "provider_smsproviderinterface", - "target": "provider_smsproviderinterface_sendtemplate", - "confidence_score": 1.0 + "target": "provider_smsproviderinterface_sendtemplate" }, { "relation": "contains", @@ -143410,9 +143441,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository", - "target": "repository_smslogrepository_smslogrepository", - "confidence_score": 1.0 + "target": "repository_smslogrepository_smslogrepository" }, { "relation": "imports", @@ -143421,9 +143452,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository", - "target": "smslog", - "confidence_score": 1.0 + "target": "smslog" }, { "relation": "imports", @@ -143432,9 +143463,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository", - "target": "src_sms_repository_smslogrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smslogrepository_php_managerregistry" }, { "relation": "method", @@ -143442,9 +143473,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository_smslogrepository", - "target": "repository_smslogrepository_smslogrepository_construct", - "confidence_score": 1.0 + "target": "repository_smslogrepository_smslogrepository_construct" }, { "relation": "method", @@ -143452,9 +143483,9 @@ "source_file": "src/Sms/Repository/SmsLogRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smslogrepository_smslogrepository", - "target": "repository_smslogrepository_smslogrepository_save", - "confidence_score": 1.0 + "target": "repository_smslogrepository_smslogrepository_save" }, { "relation": "references_constant", @@ -143473,9 +143504,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smslogrepository_smslogrepository_construct", - "target": "src_sms_repository_smslogrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smslogrepository_php_managerregistry" }, { "relation": "references", @@ -143484,9 +143515,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smslogrepository_smslogrepository_save", - "target": "smslog", - "confidence_score": 1.0 + "target": "smslog" }, { "relation": "imports", @@ -143495,9 +143526,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice", - "target": "smslog", - "confidence_score": 1.0 + "target": "smslog" }, { "relation": "contains", @@ -143505,9 +143536,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository", - "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "confidence_score": 1.0 + "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository" }, { "relation": "imports", @@ -143516,9 +143547,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "imports", @@ -143527,9 +143558,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository", - "target": "src_sms_repository_smsmessagetemplaterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smsmessagetemplaterepository_php_managerregistry" }, { "relation": "method", @@ -143537,9 +143568,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_construct", - "confidence_score": 1.0 + "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_construct" }, { "relation": "method", @@ -143547,9 +143578,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_findbytag", - "confidence_score": 1.0 + "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_findbytag" }, { "relation": "method", @@ -143557,9 +143588,9 @@ "source_file": "src/Sms/Repository/SmsMessageTemplateRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository", - "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_save", - "confidence_score": 1.0 + "target": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_save" }, { "relation": "references_constant", @@ -143578,9 +143609,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_construct", - "target": "src_sms_repository_smsmessagetemplaterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smsmessagetemplaterepository_php_managerregistry" }, { "relation": "references", @@ -143589,9 +143620,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_findbytag", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "references", @@ -143600,9 +143631,9 @@ "source_location": "L21", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smsmessagetemplaterepository_smsmessagetemplaterepository_save", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "imports", @@ -143611,9 +143642,9 @@ "source_file": "src/Sms/Service/SmsTextResolver.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smstextresolver", - "target": "smsmessagetemplate", - "confidence_score": 1.0 + "target": "smsmessagetemplate" }, { "relation": "contains", @@ -143621,9 +143652,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository", - "target": "repository_smssettingsrepository_smssettingsrepository", - "confidence_score": 1.0 + "target": "repository_smssettingsrepository_smssettingsrepository" }, { "relation": "imports", @@ -143632,9 +143663,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository", - "target": "smssettings", - "confidence_score": 1.0 + "target": "smssettings" }, { "relation": "imports", @@ -143643,9 +143674,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository", - "target": "src_sms_repository_smssettingsrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smssettingsrepository_php_managerregistry" }, { "relation": "method", @@ -143653,9 +143684,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository", - "target": "repository_smssettingsrepository_smssettingsrepository_construct", - "confidence_score": 1.0 + "target": "repository_smssettingsrepository_smssettingsrepository_construct" }, { "relation": "method", @@ -143663,9 +143694,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository", - "target": "repository_smssettingsrepository_smssettingsrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_smssettingsrepository_smssettingsrepository_findbyentity" }, { "relation": "method", @@ -143673,9 +143704,9 @@ "source_file": "src/Sms/Repository/SmsSettingsRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository", - "target": "repository_smssettingsrepository_smssettingsrepository_save", - "confidence_score": 1.0 + "target": "repository_smssettingsrepository_smssettingsrepository_save" }, { "relation": "references_constant", @@ -143694,9 +143725,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository_construct", - "target": "src_sms_repository_smssettingsrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smssettingsrepository_php_managerregistry" }, { "relation": "references", @@ -143705,9 +143736,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository_findbyentity", - "target": "smssettings", - "confidence_score": 1.0 + "target": "smssettings" }, { "relation": "references", @@ -143716,9 +143747,9 @@ "source_location": "L21", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smssettingsrepository_smssettingsrepository_save", - "target": "smssettings", - "confidence_score": 1.0 + "target": "smssettings" }, { "relation": "contains", @@ -143726,9 +143757,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository", - "target": "repository_smstemplaterepository_smstemplaterepository", - "confidence_score": 1.0 + "target": "repository_smstemplaterepository_smstemplaterepository" }, { "relation": "imports", @@ -143737,9 +143768,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "imports", @@ -143748,9 +143779,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository", - "target": "src_sms_repository_smstemplaterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smstemplaterepository_php_managerregistry" }, { "relation": "method", @@ -143758,9 +143789,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository", - "target": "repository_smstemplaterepository_smstemplaterepository_construct", - "confidence_score": 1.0 + "target": "repository_smstemplaterepository_smstemplaterepository_construct" }, { "relation": "method", @@ -143768,9 +143799,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository", - "target": "repository_smstemplaterepository_smstemplaterepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_smstemplaterepository_smstemplaterepository_findbyuuid" }, { "relation": "method", @@ -143778,9 +143809,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository", - "target": "repository_smstemplaterepository_smstemplaterepository_remove", - "confidence_score": 1.0 + "target": "repository_smstemplaterepository_smstemplaterepository_remove" }, { "relation": "method", @@ -143788,9 +143819,9 @@ "source_file": "src/Sms/Repository/SmsTemplateRepository.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository", - "target": "repository_smstemplaterepository_smstemplaterepository_save", - "confidence_score": 1.0 + "target": "repository_smstemplaterepository_smstemplaterepository_save" }, { "relation": "references_constant", @@ -143809,9 +143840,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository_construct", - "target": "src_sms_repository_smstemplaterepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smstemplaterepository_php_managerregistry" }, { "relation": "references", @@ -143820,9 +143851,9 @@ "source_location": "L12", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository_findbyuuid", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "references", @@ -143831,9 +143862,9 @@ "source_location": "L14", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository_remove", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "references", @@ -143842,9 +143873,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smstemplaterepository_smstemplaterepository_save", - "target": "smstemplate", - "confidence_score": 1.0 + "target": "smstemplate" }, { "relation": "contains", @@ -143852,9 +143883,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository", - "target": "repository_smswalletrepository_smswalletrepository", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository" }, { "relation": "imports", @@ -143863,9 +143894,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository", - "target": "src_sms_repository_smswalletrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smswalletrepository_php_managerregistry" }, { "relation": "imports", @@ -143874,9 +143905,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository", - "target": "src_sms_repository_smswalletrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswalletrepository_php_smswallet" }, { "relation": "method", @@ -143884,9 +143915,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository", - "target": "repository_smswalletrepository_smswalletrepository_construct", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository_construct" }, { "relation": "method", @@ -143894,9 +143925,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository", - "target": "repository_smswalletrepository_smswalletrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository_findbyentity" }, { "relation": "method", @@ -143904,9 +143935,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository", - "target": "repository_smswalletrepository_smswalletrepository_getbalance", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository_getbalance" }, { "relation": "method", @@ -143914,9 +143945,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository", - "target": "repository_smswalletrepository_smswalletrepository_save", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository_save" }, { "relation": "references", @@ -143925,9 +143956,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository_construct", - "target": "src_sms_repository_smswalletrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smswalletrepository_php_managerregistry" }, { "relation": "references_constant", @@ -143946,9 +143977,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository_findbyentity", - "target": "src_sms_repository_smswalletrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswalletrepository_php_smswallet" }, { "relation": "calls", @@ -143957,9 +143988,9 @@ "source_file": "src/Sms/Repository/SmsWalletRepository.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository_getbalance", - "target": "repository_smswalletrepository_smswalletrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_smswalletrepository_smswalletrepository_findbyentity" }, { "relation": "references", @@ -143968,9 +143999,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswalletrepository_smswalletrepository_save", - "target": "src_sms_repository_smswalletrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswalletrepository_php_smswallet" }, { "relation": "contains", @@ -143978,9 +144009,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository", - "target": "repository_smswallettransactionrepository_smswallettransactionrepository", - "confidence_score": 1.0 + "target": "repository_smswallettransactionrepository_smswallettransactionrepository" }, { "relation": "imports", @@ -143989,9 +144020,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository", - "target": "smswallettransaction", - "confidence_score": 1.0 + "target": "smswallettransaction" }, { "relation": "imports", @@ -144000,9 +144031,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository", - "target": "src_sms_repository_smswallettransactionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smswallettransactionrepository_php_managerregistry" }, { "relation": "imports", @@ -144011,9 +144042,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository", - "target": "src_sms_repository_smswallettransactionrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswallettransactionrepository_php_smswallet" }, { "relation": "method", @@ -144021,9 +144052,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository", - "target": "repository_smswallettransactionrepository_smswallettransactionrepository_construct", - "confidence_score": 1.0 + "target": "repository_smswallettransactionrepository_smswallettransactionrepository_construct" }, { "relation": "method", @@ -144031,9 +144062,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository", - "target": "repository_smswallettransactionrepository_smswallettransactionrepository_countbywallet", - "confidence_score": 1.0 + "target": "repository_smswallettransactionrepository_smswallettransactionrepository_countbywallet" }, { "relation": "method", @@ -144041,9 +144072,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository", - "target": "repository_smswallettransactionrepository_smswallettransactionrepository_findbywallet", - "confidence_score": 1.0 + "target": "repository_smswallettransactionrepository_smswallettransactionrepository_findbywallet" }, { "relation": "method", @@ -144051,9 +144082,9 @@ "source_file": "src/Sms/Repository/SmsWalletTransactionRepository.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository", - "target": "repository_smswallettransactionrepository_smswallettransactionrepository_save", - "confidence_score": 1.0 + "target": "repository_smswallettransactionrepository_smswallettransactionrepository_save" }, { "relation": "references_constant", @@ -144072,9 +144103,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository_construct", - "target": "src_sms_repository_smswallettransactionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_sms_repository_smswallettransactionrepository_php_managerregistry" }, { "relation": "references", @@ -144083,9 +144114,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository_findbywallet", - "target": "src_sms_repository_smswallettransactionrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswallettransactionrepository_php_smswallet" }, { "relation": "references", @@ -144094,9 +144125,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository_countbywallet", - "target": "src_sms_repository_smswallettransactionrepository_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_repository_smswallettransactionrepository_php_smswallet" }, { "relation": "references", @@ -144105,9 +144136,9 @@ "source_location": "L39", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_smswallettransactionrepository_smswallettransactionrepository_save", - "target": "smswallettransaction", - "confidence_score": 1.0 + "target": "smswallettransaction" }, { "relation": "imports", @@ -144116,9 +144147,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice", - "target": "smswallettransaction", - "confidence_score": 1.0 + "target": "smswallettransaction" }, { "relation": "contains", @@ -144126,9 +144157,9 @@ "source_file": "src/Sms/Service/SendSmsHandler.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "service_sendsmshandler", - "target": "service_sendsmshandler_sendsmshandler", - "confidence_score": 1.0 + "target": "service_sendsmshandler_sendsmshandler" }, { "relation": "imports", @@ -144137,9 +144168,9 @@ "source_file": "src/Sms/Service/SendSmsHandler.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_sendsmshandler", - "target": "src_sms_service_sendsmshandler_php_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_sms_service_sendsmshandler_php_sendsmsmessage" }, { "relation": "method", @@ -144147,9 +144178,9 @@ "source_file": "src/Sms/Service/SendSmsHandler.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_sendsmshandler_sendsmshandler", - "target": "service_sendsmshandler_sendsmshandler_construct", - "confidence_score": 1.0 + "target": "service_sendsmshandler_sendsmshandler_construct" }, { "relation": "method", @@ -144157,9 +144188,9 @@ "source_file": "src/Sms/Service/SendSmsHandler.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_sendsmshandler_sendsmshandler", - "target": "service_sendsmshandler_sendsmshandler_invoke", - "confidence_score": 1.0 + "target": "service_sendsmshandler_sendsmshandler_invoke" }, { "relation": "references", @@ -144168,9 +144199,9 @@ "source_location": "L13", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_sendsmshandler_sendsmshandler_invoke", - "target": "src_sms_service_sendsmshandler_php_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_sms_service_sendsmshandler_php_sendsmsmessage" }, { "relation": "contains", @@ -144178,9 +144209,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice", - "target": "service_smsservice_smsservice", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice" }, { "relation": "imports", @@ -144189,9 +144220,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice", - "target": "src_sms_service_smsservice_php_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_sendsmsmessage" }, { "relation": "imports", @@ -144200,9 +144231,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice", - "target": "src_sms_service_smsservice_php_smsproviderinterface", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_smsproviderinterface" }, { "relation": "method", @@ -144210,9 +144241,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice_smsservice", - "target": "service_smsservice_smsservice_construct", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice_construct" }, { "relation": "method", @@ -144220,9 +144251,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice_smsservice", - "target": "service_smsservice_smsservice_dispatchasync", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice_dispatchasync" }, { "relation": "method", @@ -144230,9 +144261,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice_smsservice", - "target": "service_smsservice_smsservice_resolveprovider", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice_resolveprovider" }, { "relation": "method", @@ -144240,9 +144271,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice_smsservice", - "target": "service_smsservice_smsservice_sendnow", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice_sendnow" }, { "relation": "calls", @@ -144251,9 +144282,9 @@ "source_file": "src/Sms/Service/SmsService.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smsservice_smsservice_sendnow", - "target": "service_smsservice_smsservice_resolveprovider", - "confidence_score": 1.0 + "target": "service_smsservice_smsservice_resolveprovider" }, { "relation": "references", @@ -144262,9 +144293,9 @@ "source_location": "L43", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_smsservice_smsservice_sendnow", - "target": "src_sms_service_smsservice_php_sendsmsmessage", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_sendsmsmessage" }, { "relation": "references", @@ -144273,9 +144304,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_smsservice_smsservice_resolveprovider", - "target": "src_sms_service_smsservice_php_smsproviderinterface", - "confidence_score": 1.0 + "target": "src_sms_service_smsservice_php_smsproviderinterface" }, { "relation": "contains", @@ -144283,9 +144314,9 @@ "source_file": "src/Sms/Service/SmsTextResolver.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smstextresolver", - "target": "service_smstextresolver_smstextresolver", - "confidence_score": 1.0 + "target": "service_smstextresolver_smstextresolver" }, { "relation": "method", @@ -144293,9 +144324,9 @@ "source_file": "src/Sms/Service/SmsTextResolver.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smstextresolver_smstextresolver", - "target": "service_smstextresolver_smstextresolver_construct", - "confidence_score": 1.0 + "target": "service_smstextresolver_smstextresolver_construct" }, { "relation": "method", @@ -144303,9 +144334,9 @@ "source_file": "src/Sms/Service/SmsTextResolver.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smstextresolver_smstextresolver", - "target": "service_smstextresolver_smstextresolver_resolve", - "confidence_score": 1.0 + "target": "service_smstextresolver_smstextresolver_resolve" }, { "relation": "contains", @@ -144313,9 +144344,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice", - "target": "service_smswalletservice_smswalletservice", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice" }, { "relation": "imports", @@ -144324,9 +144355,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice", - "target": "src_sms_service_smswalletservice_php_payment", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_payment" }, { "relation": "imports", @@ -144335,9 +144366,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice", - "target": "src_sms_service_smswalletservice_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_smswallet" }, { "relation": "method", @@ -144345,9 +144376,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice", - "target": "service_smswalletservice_smswalletservice_charge", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice_charge" }, { "relation": "method", @@ -144355,9 +144386,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice", - "target": "service_smswalletservice_smswalletservice_construct", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice_construct" }, { "relation": "method", @@ -144365,9 +144396,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice", - "target": "service_smswalletservice_smswalletservice_deduct", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice_deduct" }, { "relation": "method", @@ -144375,9 +144406,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice", - "target": "service_smswalletservice_smswalletservice_getbalance", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice_getbalance" }, { "relation": "method", @@ -144385,9 +144416,9 @@ "source_file": "src/Sms/Service/SmsWalletService.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice", - "target": "service_smswalletservice_smswalletservice_getorcreate", - "confidence_score": 1.0 + "target": "service_smswalletservice_smswalletservice_getorcreate" }, { "relation": "references", @@ -144396,9 +144427,9 @@ "source_location": "L18", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice_getorcreate", - "target": "src_sms_service_smswalletservice_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_smswallet" }, { "relation": "references", @@ -144407,9 +144438,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice_charge", - "target": "src_sms_service_smswalletservice_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_smswallet" }, { "relation": "references", @@ -144418,9 +144449,9 @@ "source_location": "L43", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice_deduct", - "target": "src_sms_service_smswalletservice_php_smswallet", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_smswallet" }, { "relation": "references", @@ -144429,9 +144460,9 @@ "source_location": "L28", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_smswalletservice_smswalletservice_charge", - "target": "src_sms_service_smswalletservice_php_payment", - "confidence_score": 1.0 + "target": "src_sms_service_smswalletservice_php_payment" }, { "relation": "contains", @@ -144439,9 +144470,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller" }, { "relation": "imports", @@ -144450,9 +144481,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "imports", @@ -144461,9 +144492,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "method", @@ -144471,9 +144502,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_adminlist", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_adminlist" }, { "relation": "method", @@ -144481,9 +144512,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_construct", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_construct" }, { "relation": "method", @@ -144491,9 +144522,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_create", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_create" }, { "relation": "method", @@ -144501,9 +144532,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_delete", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_delete" }, { "relation": "method", @@ -144511,9 +144542,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_doctorcounts", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_doctorcounts" }, { "relation": "method", @@ -144521,9 +144552,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_list", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_list" }, { "relation": "method", @@ -144531,9 +144562,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_slugify", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_slugify" }, { "relation": "method", @@ -144541,9 +144572,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller", - "target": "controller_specialtycontroller_specialtycontroller_update", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_update" }, { "relation": "references", @@ -144552,9 +144583,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_list", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "references", @@ -144563,9 +144594,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_list", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "references", @@ -144574,9 +144605,9 @@ "source_location": "L124", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_adminlist", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "references", @@ -144585,9 +144616,9 @@ "source_location": "L60", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_create", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "references", @@ -144596,9 +144627,9 @@ "source_location": "L33", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_doctorcounts", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "references", @@ -144607,9 +144638,9 @@ "source_location": "L88", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_update", - "target": "src_specialty_controller_specialtycontroller_php_request", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_request" }, { "relation": "references", @@ -144618,9 +144649,9 @@ "source_location": "L124", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_adminlist", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "references", @@ -144629,9 +144660,9 @@ "source_location": "L60", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_create", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "references", @@ -144640,9 +144671,9 @@ "source_location": "L111", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_delete", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "references", @@ -144651,9 +144682,9 @@ "source_location": "L33", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_doctorcounts", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "references", @@ -144662,9 +144693,9 @@ "source_location": "L88", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_update", - "target": "src_specialty_controller_specialtycontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_specialty_controller_specialtycontroller_php_jsonresponse" }, { "relation": "calls", @@ -144673,9 +144704,9 @@ "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_specialtycontroller_specialtycontroller_create", - "target": "controller_specialtycontroller_specialtycontroller_slugify", - "confidence_score": 1.0 + "target": "controller_specialtycontroller_specialtycontroller_slugify" }, { "relation": "contains", @@ -144683,9 +144714,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty", - "target": "entity_specialty_specialty", - "confidence_score": 1.0 + "target": "entity_specialty_specialty" }, { "relation": "method", @@ -144693,9 +144724,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_construct", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_construct" }, { "relation": "method", @@ -144703,9 +144734,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getid", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getid" }, { "relation": "method", @@ -144713,9 +144744,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getname", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getname" }, { "relation": "method", @@ -144723,9 +144754,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getparent", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getparent" }, { "relation": "method", @@ -144733,9 +144764,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getslug", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getslug" }, { "relation": "method", @@ -144743,9 +144774,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getstatus", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getstatus" }, { "relation": "method", @@ -144753,9 +144784,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getuuid", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getuuid" }, { "relation": "method", @@ -144763,9 +144794,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_getweight", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_getweight" }, { "relation": "method", @@ -144773,9 +144804,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_setname", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_setname" }, { "relation": "method", @@ -144783,9 +144814,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_setparent", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_setparent" }, { "relation": "method", @@ -144793,9 +144824,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_setslug", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_setslug" }, { "relation": "method", @@ -144803,9 +144834,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_setstatus", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_setstatus" }, { "relation": "method", @@ -144813,9 +144844,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_setweight", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_setweight" }, { "relation": "method", @@ -144823,9 +144854,9 @@ "source_file": "src/Specialty/Entity/Specialty.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "entity_specialty_specialty_toarray", - "confidence_score": 1.0 + "target": "entity_specialty_specialty_toarray" }, { "relation": "references", @@ -144834,9 +144865,9 @@ "source_location": "L37", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_specialty_specialty", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144845,9 +144876,9 @@ "source_location": "L41", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_construct", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144856,9 +144887,9 @@ "source_location": "L55", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_getparent", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144867,9 +144898,9 @@ "source_location": "L57", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_setname", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144878,9 +144909,9 @@ "source_location": "L61", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_setparent", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144889,9 +144920,9 @@ "source_location": "L58", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_setslug", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144900,9 +144931,9 @@ "source_location": "L59", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_setstatus", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "references", @@ -144911,9 +144942,9 @@ "source_location": "L60", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_specialty_specialty_setweight", - "target": "src_specialty_entity_specialty_php_self", - "confidence_score": 1.0 + "target": "src_specialty_entity_specialty_php_self" }, { "relation": "contains", @@ -144921,9 +144952,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository" }, { "relation": "imports", @@ -144932,9 +144963,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository", - "target": "src_specialty_repository_specialtyrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_managerregistry" }, { "relation": "imports", @@ -144943,9 +144974,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository", - "target": "src_specialty_repository_specialtyrepository_php_specialty", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_specialty" }, { "relation": "method", @@ -144953,9 +144984,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_construct", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_construct" }, { "relation": "method", @@ -144963,9 +144994,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_doctorcountsbycity", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_doctorcountsbycity" }, { "relation": "method", @@ -144973,9 +145004,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_findactive", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_findactive" }, { "relation": "method", @@ -144983,9 +145014,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_findbyslug", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_findbyslug" }, { "relation": "method", @@ -144993,9 +145024,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_remove", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_remove" }, { "relation": "method", @@ -145003,9 +145034,9 @@ "source_file": "src/Specialty/Repository/SpecialtyRepository.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository", - "target": "repository_specialtyrepository_specialtyrepository_save", - "confidence_score": 1.0 + "target": "repository_specialtyrepository_specialtyrepository_save" }, { "relation": "references", @@ -145014,9 +145045,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository_construct", - "target": "src_specialty_repository_specialtyrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_managerregistry" }, { "relation": "references_constant", @@ -145035,9 +145066,9 @@ "source_location": "L60", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository_findbyslug", - "target": "src_specialty_repository_specialtyrepository_php_specialty", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_specialty" }, { "relation": "references", @@ -145046,9 +145077,9 @@ "source_location": "L71", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository_remove", - "target": "src_specialty_repository_specialtyrepository_php_specialty", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_specialty" }, { "relation": "references", @@ -145057,9 +145088,9 @@ "source_location": "L65", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_specialtyrepository_specialtyrepository_save", - "target": "src_specialty_repository_specialtyrepository_php_specialty", - "confidence_score": 1.0 + "target": "src_specialty_repository_specialtyrepository_php_specialty" }, { "relation": "contains", @@ -145067,9 +145098,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller" }, { "relation": "imports", @@ -145078,9 +145109,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "src_staff_controller_staffcontroller_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_clinicstaff" }, { "relation": "imports", @@ -145089,9 +145120,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "src_staff_controller_staffcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_jsonresponse" }, { "relation": "imports", @@ -145100,9 +145131,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "src_staff_controller_staffcontroller_php_request", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_request" }, { "relation": "imports", @@ -145111,9 +145142,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "method", @@ -145121,9 +145152,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_construct", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_construct" }, { "relation": "method", @@ -145131,9 +145162,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_create", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_create" }, { "relation": "method", @@ -145141,9 +145172,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_list", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_list" }, { "relation": "method", @@ -145151,9 +145182,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_ownsstaff", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_ownsstaff" }, { "relation": "method", @@ -145161,9 +145192,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_resolveentity" }, { "relation": "method", @@ -145171,9 +145202,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_toggle", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_toggle" }, { "relation": "method", @@ -145181,9 +145212,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_tolatindigits", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_tolatindigits" }, { "relation": "method", @@ -145191,9 +145222,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller", - "target": "controller_staffcontroller_staffcontroller_update", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_update" }, { "relation": "calls", @@ -145202,9 +145233,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_list", - "target": "controller_staffcontroller_staffcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_resolveentity" }, { "relation": "references", @@ -145213,9 +145244,9 @@ "source_location": "L29", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_list", - "target": "src_staff_controller_staffcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_jsonresponse" }, { "relation": "references", @@ -145224,9 +145255,9 @@ "source_location": "L29", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_list", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145235,9 +145266,9 @@ "source_location": "L45", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_create", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145246,9 +145277,9 @@ "source_location": "L131", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_ownsstaff", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145257,9 +145288,9 @@ "source_location": "L116", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_resolveentity", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145268,9 +145299,9 @@ "source_location": "L98", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_toggle", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145279,9 +145310,9 @@ "source_location": "L71", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_update", - "target": "src_staff_controller_staffcontroller_php_user", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_user" }, { "relation": "references", @@ -145290,9 +145321,9 @@ "source_location": "L45", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_create", - "target": "src_staff_controller_staffcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_jsonresponse" }, { "relation": "references", @@ -145301,9 +145332,9 @@ "source_location": "L98", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_toggle", - "target": "src_staff_controller_staffcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_jsonresponse" }, { "relation": "references", @@ -145312,9 +145343,9 @@ "source_location": "L71", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_update", - "target": "src_staff_controller_staffcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_jsonresponse" }, { "relation": "calls", @@ -145323,9 +145354,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_create", - "target": "controller_staffcontroller_staffcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_resolveentity" }, { "relation": "calls", @@ -145334,9 +145365,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_create", - "target": "controller_staffcontroller_staffcontroller_tolatindigits", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_tolatindigits" }, { "relation": "references", @@ -145345,9 +145376,9 @@ "source_location": "L45", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_create", - "target": "src_staff_controller_staffcontroller_php_request", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_request" }, { "relation": "references", @@ -145356,9 +145387,9 @@ "source_location": "L71", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_update", - "target": "src_staff_controller_staffcontroller_php_request", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_request" }, { "relation": "calls", @@ -145367,9 +145398,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_update", - "target": "controller_staffcontroller_staffcontroller_ownsstaff", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_ownsstaff" }, { "relation": "calls", @@ -145378,9 +145409,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_update", - "target": "controller_staffcontroller_staffcontroller_tolatindigits", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_tolatindigits" }, { "relation": "calls", @@ -145389,9 +145420,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_toggle", - "target": "controller_staffcontroller_staffcontroller_ownsstaff", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_ownsstaff" }, { "relation": "calls", @@ -145400,9 +145431,9 @@ "source_file": "src/Staff/Controller/StaffController.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_ownsstaff", - "target": "controller_staffcontroller_staffcontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_staffcontroller_staffcontroller_resolveentity" }, { "relation": "references", @@ -145411,9 +145442,9 @@ "source_location": "L131", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_staffcontroller_staffcontroller_ownsstaff", - "target": "src_staff_controller_staffcontroller_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_staff_controller_staffcontroller_php_clinicstaff" }, { "relation": "contains", @@ -145421,9 +145452,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff", - "target": "entity_clinicstaff_clinicstaff", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff" }, { "relation": "method", @@ -145431,9 +145462,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_construct", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_construct" }, { "relation": "method", @@ -145441,9 +145472,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getaddress", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getaddress" }, { "relation": "method", @@ -145451,9 +145482,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getcreatedat", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getcreatedat" }, { "relation": "method", @@ -145461,9 +145492,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getentityid", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getentityid" }, { "relation": "method", @@ -145471,9 +145502,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getentitytype", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getentitytype" }, { "relation": "method", @@ -145481,9 +145512,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getfullname", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getfullname" }, { "relation": "method", @@ -145491,9 +145522,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getid", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getid" }, { "relation": "method", @@ -145501,9 +145532,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getjobtitle", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getjobtitle" }, { "relation": "method", @@ -145511,9 +145542,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getnationalcode", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getnationalcode" }, { "relation": "method", @@ -145521,9 +145552,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getphone", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getphone" }, { "relation": "method", @@ -145531,9 +145562,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getupdatedat", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getupdatedat" }, { "relation": "method", @@ -145541,9 +145572,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_getuuid", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_getuuid" }, { "relation": "method", @@ -145551,9 +145582,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_isactive", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_isactive" }, { "relation": "method", @@ -145561,9 +145592,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setactive", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setactive" }, { "relation": "method", @@ -145571,9 +145602,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setaddress", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setaddress" }, { "relation": "method", @@ -145581,9 +145612,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setfullname", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setfullname" }, { "relation": "method", @@ -145591,9 +145622,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setjobtitle", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setjobtitle" }, { "relation": "method", @@ -145601,9 +145632,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setnationalcode", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setnationalcode" }, { "relation": "method", @@ -145611,9 +145642,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_setphone", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_setphone" }, { "relation": "method", @@ -145621,9 +145652,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_toarray", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_toarray" }, { "relation": "method", @@ -145631,9 +145662,9 @@ "source_file": "src/Staff/Entity/ClinicStaff.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff", - "target": "entity_clinicstaff_clinicstaff_toggleactive", - "confidence_score": 1.0 + "target": "entity_clinicstaff_clinicstaff_toggleactive" }, { "relation": "references", @@ -145642,9 +145673,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setfullname", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145653,9 +145684,9 @@ "source_location": "L80", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setactive", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145664,9 +145695,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setaddress", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145675,9 +145706,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setjobtitle", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145686,9 +145717,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setnationalcode", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145697,9 +145728,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_setphone", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "references", @@ -145708,9 +145739,9 @@ "source_location": "L82", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicstaff_clinicstaff_toggleactive", - "target": "src_staff_entity_clinicstaff_php_self", - "confidence_score": 1.0 + "target": "src_staff_entity_clinicstaff_php_self" }, { "relation": "contains", @@ -145718,9 +145749,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository", - "target": "repository_clinicstaffrepository_clinicstaffrepository", - "confidence_score": 1.0 + "target": "repository_clinicstaffrepository_clinicstaffrepository" }, { "relation": "imports", @@ -145729,9 +145760,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository", - "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff" }, { "relation": "imports", @@ -145740,9 +145771,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository", - "target": "src_staff_repository_clinicstaffrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_staff_repository_clinicstaffrepository_php_managerregistry" }, { "relation": "method", @@ -145750,9 +145781,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository", - "target": "repository_clinicstaffrepository_clinicstaffrepository_construct", - "confidence_score": 1.0 + "target": "repository_clinicstaffrepository_clinicstaffrepository_construct" }, { "relation": "method", @@ -145760,9 +145791,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository", - "target": "repository_clinicstaffrepository_clinicstaffrepository_findbyentity", - "confidence_score": 1.0 + "target": "repository_clinicstaffrepository_clinicstaffrepository_findbyentity" }, { "relation": "method", @@ -145770,9 +145801,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository", - "target": "repository_clinicstaffrepository_clinicstaffrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_clinicstaffrepository_clinicstaffrepository_findbyuuid" }, { "relation": "method", @@ -145780,9 +145811,9 @@ "source_file": "src/Staff/Repository/ClinicStaffRepository.php", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository", - "target": "repository_clinicstaffrepository_clinicstaffrepository_save", - "confidence_score": 1.0 + "target": "repository_clinicstaffrepository_clinicstaffrepository_save" }, { "relation": "references_constant", @@ -145801,9 +145832,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository_construct", - "target": "src_staff_repository_clinicstaffrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_staff_repository_clinicstaffrepository_php_managerregistry" }, { "relation": "references", @@ -145812,9 +145843,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository_findbyuuid", - "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff" }, { "relation": "references", @@ -145823,9 +145854,9 @@ "source_location": "L37", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicstaffrepository_clinicstaffrepository_save", - "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff", - "confidence_score": 1.0 + "target": "src_staff_repository_clinicstaffrepository_php_clinicstaff" }, { "relation": "contains", @@ -145833,9 +145864,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller" }, { "relation": "imports", @@ -145844,9 +145875,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "imports", @@ -145855,9 +145886,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "imports", @@ -145866,9 +145897,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller", - "target": "src_subscription_controller_subscriptioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_user" }, { "relation": "method", @@ -145876,9 +145907,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_admincreateperiod", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_admincreateperiod" }, { "relation": "method", @@ -145886,9 +145917,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_admincreateplan", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_admincreateplan" }, { "relation": "method", @@ -145896,9 +145927,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_admindeleteperiod", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_admindeleteperiod" }, { "relation": "method", @@ -145906,9 +145937,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_adminplans", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_adminplans" }, { "relation": "method", @@ -145916,9 +145947,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_adminreport", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_adminreport" }, { "relation": "method", @@ -145926,9 +145957,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateperiod", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateperiod" }, { "relation": "method", @@ -145936,9 +145967,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateplan", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateplan" }, { "relation": "method", @@ -145946,9 +145977,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_construct", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_construct" }, { "relation": "method", @@ -145956,9 +145987,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_my", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_my" }, { "relation": "method", @@ -145966,9 +145997,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_plans", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_plans" }, { "relation": "method", @@ -145976,9 +146007,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity" }, { "relation": "method", @@ -145986,9 +146017,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller", - "target": "controller_subscriptioncontroller_subscriptioncontroller_trial", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_trial" }, { "relation": "references", @@ -145997,9 +146028,9 @@ "source_location": "L42", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_plans", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146008,9 +146039,9 @@ "source_location": "L152", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_admincreateperiod", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146019,9 +146050,9 @@ "source_location": "L107", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_admincreateplan", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146030,9 +146061,9 @@ "source_location": "L204", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_admindeleteperiod", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146041,9 +146072,9 @@ "source_location": "L93", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminplans", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146052,9 +146083,9 @@ "source_location": "L219", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminreport", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146063,9 +146094,9 @@ "source_location": "L182", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateperiod", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146074,9 +146105,9 @@ "source_location": "L130", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateplan", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146085,9 +146116,9 @@ "source_location": "L55", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_my", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "references", @@ -146096,9 +146127,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_trial", - "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_jsonresponse" }, { "relation": "calls", @@ -146107,9 +146138,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_my", - "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity" }, { "relation": "references", @@ -146118,9 +146149,9 @@ "source_location": "L55", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_my", - "target": "src_subscription_controller_subscriptioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_user" }, { "relation": "references", @@ -146129,9 +146160,9 @@ "source_location": "L245", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity", - "target": "src_subscription_controller_subscriptioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_user" }, { "relation": "references", @@ -146140,9 +146171,9 @@ "source_location": "L73", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_trial", - "target": "src_subscription_controller_subscriptioncontroller_php_user", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_user" }, { "relation": "calls", @@ -146151,9 +146182,9 @@ "source_file": "src/Subscription/Controller/SubscriptionController.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_trial", - "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity", - "confidence_score": 1.0 + "target": "controller_subscriptioncontroller_subscriptioncontroller_resolveentity" }, { "relation": "references", @@ -146162,9 +146193,9 @@ "source_location": "L107", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_admincreateplan", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "references", @@ -146173,9 +146204,9 @@ "source_location": "L152", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_admincreateperiod", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "references", @@ -146184,9 +146215,9 @@ "source_location": "L219", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminreport", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "references", @@ -146195,9 +146226,9 @@ "source_location": "L182", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateperiod", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "references", @@ -146206,9 +146237,9 @@ "source_location": "L130", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_subscriptioncontroller_subscriptioncontroller_adminupdateplan", - "target": "src_subscription_controller_subscriptioncontroller_php_request", - "confidence_score": 1.0 + "target": "src_subscription_controller_subscriptioncontroller_php_request" }, { "relation": "contains", @@ -146216,9 +146247,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription" }, { "relation": "imports", @@ -146227,9 +146258,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription", - "target": "src_subscription_entity_clinicsubscription_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_payment" }, { "relation": "method", @@ -146237,9 +146268,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_construct", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_construct" }, { "relation": "method", @@ -146247,9 +146278,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getcreatedat", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getcreatedat" }, { "relation": "method", @@ -146257,9 +146288,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getdaysremaining", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getdaysremaining" }, { "relation": "method", @@ -146267,9 +146298,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getentityid", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getentityid" }, { "relation": "method", @@ -146277,9 +146308,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getentitytype", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getentitytype" }, { "relation": "method", @@ -146287,9 +146318,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getexpiresat", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getexpiresat" }, { "relation": "method", @@ -146297,9 +146328,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getid", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getid" }, { "relation": "method", @@ -146307,9 +146338,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getpayment", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getpayment" }, { "relation": "method", @@ -146317,9 +146348,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getperiod", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getperiod" }, { "relation": "method", @@ -146327,9 +146358,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getplan", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getplan" }, { "relation": "method", @@ -146337,9 +146368,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getstartsat", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getstartsat" }, { "relation": "method", @@ -146347,9 +146378,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_getuuid", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getuuid" }, { "relation": "method", @@ -146357,9 +146388,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_isactive", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_isactive" }, { "relation": "method", @@ -146367,9 +146398,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_istrial", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_istrial" }, { "relation": "method", @@ -146377,9 +146408,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "entity_clinicsubscription_clinicsubscription_toarray", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_toarray" }, { "relation": "references", @@ -146388,9 +146419,9 @@ "source_location": "L37", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "src_subscription_entity_clinicsubscription_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_payment" }, { "relation": "references", @@ -146399,9 +146430,9 @@ "source_location": "L33", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod" }, { "relation": "references", @@ -146410,9 +146441,9 @@ "source_location": "L29", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan" }, { "relation": "references", @@ -146421,9 +146452,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_construct", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan" }, { "relation": "references", @@ -146432,9 +146463,9 @@ "source_location": "L78", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_getplan", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionplan" }, { "relation": "references", @@ -146443,9 +146474,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_construct", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod" }, { "relation": "references", @@ -146454,9 +146485,9 @@ "source_location": "L79", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_getperiod", - "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_subscriptionperiod" }, { "relation": "references", @@ -146465,9 +146496,9 @@ "source_location": "L53", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_construct", - "target": "src_subscription_entity_clinicsubscription_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_payment" }, { "relation": "references", @@ -146476,9 +146507,9 @@ "source_location": "L80", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_getpayment", - "target": "src_subscription_entity_clinicsubscription_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_entity_clinicsubscription_php_payment" }, { "relation": "calls", @@ -146487,9 +146518,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_toarray", - "target": "entity_clinicsubscription_clinicsubscription_isactive", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_isactive" }, { "relation": "calls", @@ -146498,9 +146529,9 @@ "source_file": "src/Subscription/Entity/ClinicSubscription.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_clinicsubscription_clinicsubscription_toarray", - "target": "entity_clinicsubscription_clinicsubscription_getdaysremaining", - "confidence_score": 1.0 + "target": "entity_clinicsubscription_clinicsubscription_getdaysremaining" }, { "relation": "contains", @@ -146508,9 +146539,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod" }, { "relation": "method", @@ -146518,9 +146549,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_construct", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_construct" }, { "relation": "method", @@ -146528,9 +146559,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getcreatedat", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getcreatedat" }, { "relation": "method", @@ -146538,9 +146569,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getdurationmonths", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getdurationmonths" }, { "relation": "method", @@ -146548,9 +146579,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getid", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getid" }, { "relation": "method", @@ -146558,9 +146589,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getlabel", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getlabel" }, { "relation": "method", @@ -146568,9 +146599,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getplan", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getplan" }, { "relation": "method", @@ -146578,9 +146609,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getpricerials", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getpricerials" }, { "relation": "method", @@ -146588,9 +146619,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getsortorder", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getsortorder" }, { "relation": "method", @@ -146598,9 +146629,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getupdatedat", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getupdatedat" }, { "relation": "method", @@ -146608,9 +146639,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_getuuid", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getuuid" }, { "relation": "method", @@ -146618,9 +146649,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_isactive", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_isactive" }, { "relation": "method", @@ -146628,9 +146659,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_istrial", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_istrial" }, { "relation": "method", @@ -146638,9 +146669,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_setactive", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_setactive" }, { "relation": "method", @@ -146648,9 +146679,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_setdurationmonths", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_setdurationmonths" }, { "relation": "method", @@ -146658,9 +146689,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_setlabel", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_setlabel" }, { "relation": "method", @@ -146668,9 +146699,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_setpricerials", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_setpricerials" }, { "relation": "method", @@ -146678,9 +146709,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_setsortorder", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_setsortorder" }, { "relation": "method", @@ -146688,9 +146719,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "entity_subscriptionperiod_subscriptionperiod_toarray", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_toarray" }, { "relation": "references", @@ -146699,9 +146730,9 @@ "source_location": "L21", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod", - "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan" }, { "relation": "references", @@ -146710,9 +146741,9 @@ "source_location": "L49", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_construct", - "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan" }, { "relation": "references", @@ -146721,9 +146752,9 @@ "source_location": "L63", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_getplan", - "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_subscriptionplan" }, { "relation": "calls", @@ -146732,9 +146763,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPeriod.php", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_toarray", - "target": "entity_subscriptionperiod_subscriptionperiod_getuuid", - "confidence_score": 1.0 + "target": "entity_subscriptionperiod_subscriptionperiod_getuuid" }, { "relation": "references", @@ -146743,9 +146774,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_setlabel", - "target": "src_subscription_entity_subscriptionperiod_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_self" }, { "relation": "references", @@ -146754,9 +146785,9 @@ "source_location": "L76", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_setactive", - "target": "src_subscription_entity_subscriptionperiod_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_self" }, { "relation": "references", @@ -146765,9 +146796,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_setdurationmonths", - "target": "src_subscription_entity_subscriptionperiod_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_self" }, { "relation": "references", @@ -146776,9 +146807,9 @@ "source_location": "L75", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_setpricerials", - "target": "src_subscription_entity_subscriptionperiod_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_self" }, { "relation": "references", @@ -146787,9 +146818,9 @@ "source_location": "L77", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionperiod_subscriptionperiod_setsortorder", - "target": "src_subscription_entity_subscriptionperiod_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionperiod_php_self" }, { "relation": "contains", @@ -146797,9 +146828,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan" }, { "relation": "imports", @@ -146808,9 +146839,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan", - "target": "src_subscription_entity_subscriptionplan_php_collection", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_collection" }, { "relation": "method", @@ -146818,9 +146849,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_construct", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_construct" }, { "relation": "method", @@ -146828,9 +146859,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getcreatedat", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getcreatedat" }, { "relation": "method", @@ -146838,9 +146869,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getfeatures", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getfeatures" }, { "relation": "method", @@ -146848,9 +146879,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getid", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getid" }, { "relation": "method", @@ -146858,9 +146889,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getlevel", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getlevel" }, { "relation": "method", @@ -146868,9 +146899,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getmaxsecretaries", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getmaxsecretaries" }, { "relation": "method", @@ -146878,9 +146909,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getname", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getname" }, { "relation": "method", @@ -146888,9 +146919,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getperiods", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getperiods" }, { "relation": "method", @@ -146898,9 +146929,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getupdatedat", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getupdatedat" }, { "relation": "method", @@ -146908,9 +146939,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_getuuid", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_getuuid" }, { "relation": "method", @@ -146918,9 +146949,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_hasfeature", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_hasfeature" }, { "relation": "method", @@ -146928,9 +146959,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_isactive", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_isactive" }, { "relation": "method", @@ -146938,9 +146969,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_setactive", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_setactive" }, { "relation": "method", @@ -146948,9 +146979,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_setfeatures", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_setfeatures" }, { "relation": "method", @@ -146958,9 +146989,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_setlevel", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_setlevel" }, { "relation": "method", @@ -146968,9 +146999,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_setmaxsecretaries", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_setmaxsecretaries" }, { "relation": "method", @@ -146978,9 +147009,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_setname", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_setname" }, { "relation": "method", @@ -146988,9 +147019,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "entity_subscriptionplan_subscriptionplan_toarray", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_toarray" }, { "relation": "references", @@ -146999,9 +147030,9 @@ "source_location": "L44", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan", - "target": "src_subscription_entity_subscriptionplan_php_collection", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_collection" }, { "relation": "references", @@ -147010,9 +147041,9 @@ "source_location": "L68", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_getperiods", - "target": "src_subscription_entity_subscriptionplan_php_collection", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_collection" }, { "relation": "calls", @@ -147021,9 +147052,9 @@ "source_file": "src/Subscription/Entity/SubscriptionPlan.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_toarray", - "target": "entity_subscriptionplan_subscriptionplan_isactive", - "confidence_score": 1.0 + "target": "entity_subscriptionplan_subscriptionplan_isactive" }, { "relation": "references", @@ -147032,9 +147063,9 @@ "source_location": "L70", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_setname", - "target": "src_subscription_entity_subscriptionplan_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_self" }, { "relation": "references", @@ -147043,9 +147074,9 @@ "source_location": "L74", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_setactive", - "target": "src_subscription_entity_subscriptionplan_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_self" }, { "relation": "references", @@ -147054,9 +147085,9 @@ "source_location": "L73", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_setfeatures", - "target": "src_subscription_entity_subscriptionplan_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_self" }, { "relation": "references", @@ -147065,9 +147096,9 @@ "source_location": "L71", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_setlevel", - "target": "src_subscription_entity_subscriptionplan_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_self" }, { "relation": "references", @@ -147076,9 +147107,9 @@ "source_location": "L72", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_subscriptionplan_subscriptionplan_setmaxsecretaries", - "target": "src_subscription_entity_subscriptionplan_php_self", - "confidence_score": 1.0 + "target": "src_subscription_entity_subscriptionplan_php_self" }, { "relation": "contains", @@ -147086,9 +147117,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository" }, { "relation": "imports", @@ -147097,9 +147128,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription" }, { "relation": "imports", @@ -147108,9 +147139,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_managerregistry" }, { "relation": "method", @@ -147118,9 +147149,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_construct", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_construct" }, { "relation": "method", @@ -147128,9 +147159,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findactive", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findactive" }, { "relation": "method", @@ -147138,9 +147169,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findbyuuid" }, { "relation": "method", @@ -147148,9 +147179,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_hasusedtrial", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_hasusedtrial" }, { "relation": "method", @@ -147158,9 +147189,9 @@ "source_file": "src/Subscription/Repository/ClinicSubscriptionRepository.php", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository", - "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_save", - "confidence_score": 1.0 + "target": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_save" }, { "relation": "references_constant", @@ -147179,9 +147210,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_construct", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_managerregistry" }, { "relation": "references", @@ -147190,9 +147221,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findbyuuid", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription" }, { "relation": "references", @@ -147201,9 +147232,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_findactive", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription" }, { "relation": "references", @@ -147212,9 +147243,9 @@ "source_location": "L51", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_clinicsubscriptionrepository_clinicsubscriptionrepository_save", - "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_repository_clinicsubscriptionrepository_php_clinicsubscription" }, { "relation": "contains", @@ -147222,9 +147253,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository", - "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "confidence_score": 1.0 + "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository" }, { "relation": "imports", @@ -147233,9 +147264,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository", - "target": "src_subscription_repository_subscriptionperiodrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_managerregistry" }, { "relation": "imports", @@ -147244,9 +147275,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod" }, { "relation": "imports", @@ -147255,9 +147286,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionplan" }, { "relation": "method", @@ -147265,9 +147296,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_construct", - "confidence_score": 1.0 + "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_construct" }, { "relation": "method", @@ -147275,9 +147306,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findbyuuid" }, { "relation": "method", @@ -147285,9 +147316,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findtrialperiodforplan", - "confidence_score": 1.0 + "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findtrialperiodforplan" }, { "relation": "method", @@ -147295,9 +147326,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPeriodRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository", - "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_save", - "confidence_score": 1.0 + "target": "repository_subscriptionperiodrepository_subscriptionperiodrepository_save" }, { "relation": "references", @@ -147306,9 +147337,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository_construct", - "target": "src_subscription_repository_subscriptionperiodrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_managerregistry" }, { "relation": "references_constant", @@ -147327,9 +147358,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findbyuuid", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod" }, { "relation": "references", @@ -147338,9 +147369,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findtrialperiodforplan", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod" }, { "relation": "references", @@ -147349,9 +147380,9 @@ "source_location": "L27", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository_save", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionperiod" }, { "relation": "references", @@ -147360,9 +147391,9 @@ "source_location": "L22", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_subscriptionperiodrepository_subscriptionperiodrepository_findtrialperiodforplan", - "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionperiodrepository_php_subscriptionplan" }, { "relation": "contains", @@ -147370,9 +147401,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository" }, { "relation": "imports", @@ -147381,9 +147412,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository", - "target": "src_subscription_repository_subscriptionplanrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_managerregistry" }, { "relation": "imports", @@ -147392,9 +147423,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository", - "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan" }, { "relation": "method", @@ -147402,9 +147433,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository_construct", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository_construct" }, { "relation": "method", @@ -147412,9 +147443,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findallactive", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findallactive" }, { "relation": "method", @@ -147422,9 +147453,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyname", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyname" }, { "relation": "method", @@ -147432,9 +147463,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyuuid" }, { "relation": "method", @@ -147442,9 +147473,9 @@ "source_file": "src/Subscription/Repository/SubscriptionPlanRepository.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository", - "target": "repository_subscriptionplanrepository_subscriptionplanrepository_save", - "confidence_score": 1.0 + "target": "repository_subscriptionplanrepository_subscriptionplanrepository_save" }, { "relation": "references", @@ -147453,9 +147484,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository_construct", - "target": "src_subscription_repository_subscriptionplanrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_managerregistry" }, { "relation": "references_constant", @@ -147474,9 +147505,9 @@ "source_location": "L16", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyuuid", - "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan" }, { "relation": "references", @@ -147485,9 +147516,9 @@ "source_location": "L21", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository_findbyname", - "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan" }, { "relation": "references", @@ -147496,9 +147527,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_subscriptionplanrepository_subscriptionplanrepository_save", - "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan", - "confidence_score": 1.0 + "target": "src_subscription_repository_subscriptionplanrepository_php_subscriptionplan" }, { "relation": "contains", @@ -147506,9 +147537,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice" }, { "relation": "imports", @@ -147517,9 +147548,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice", - "target": "src_subscription_service_subscriptionservice_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_clinicsubscription" }, { "relation": "imports", @@ -147528,9 +147559,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice", - "target": "src_subscription_service_subscriptionservice_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_payment" }, { "relation": "method", @@ -147538,9 +147569,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_activatetrial", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_activatetrial" }, { "relation": "method", @@ -147548,9 +147579,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat" }, { "relation": "method", @@ -147558,9 +147589,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_construct", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_construct" }, { "relation": "method", @@ -147568,9 +147599,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_createfrompayment", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_createfrompayment" }, { "relation": "method", @@ -147578,9 +147609,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_getactivesubscription", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_getactivesubscription" }, { "relation": "method", @@ -147588,9 +147619,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_getsecretarylimit", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_getsecretarylimit" }, { "relation": "method", @@ -147598,9 +147629,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_hasfeature", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_hasfeature" }, { "relation": "method", @@ -147608,9 +147639,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice", - "target": "service_subscriptionservice_subscriptionservice_hasusedtrial", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_hasusedtrial" }, { "relation": "calls", @@ -147619,9 +147650,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_createfrompayment", - "target": "service_subscriptionservice_subscriptionservice_getactivesubscription", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_getactivesubscription" }, { "relation": "references", @@ -147630,9 +147661,9 @@ "source_location": "L23", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_getactivesubscription", - "target": "src_subscription_service_subscriptionservice_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_clinicsubscription" }, { "relation": "calls", @@ -147641,9 +147672,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_getsecretarylimit", - "target": "service_subscriptionservice_subscriptionservice_getactivesubscription", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_getactivesubscription" }, { "relation": "calls", @@ -147652,9 +147683,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_hasfeature", - "target": "service_subscriptionservice_subscriptionservice_getactivesubscription", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_getactivesubscription" }, { "relation": "references", @@ -147663,9 +147694,9 @@ "source_location": "L53", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_activatetrial", - "target": "src_subscription_service_subscriptionservice_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_clinicsubscription" }, { "relation": "references", @@ -147674,9 +147705,9 @@ "source_location": "L91", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_createfrompayment", - "target": "src_subscription_service_subscriptionservice_php_clinicsubscription", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_clinicsubscription" }, { "relation": "calls", @@ -147685,9 +147716,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_activatetrial", - "target": "service_subscriptionservice_subscriptionservice_hasusedtrial", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_hasusedtrial" }, { "relation": "calls", @@ -147696,9 +147727,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_activatetrial", - "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat" }, { "relation": "calls", @@ -147707,9 +147738,9 @@ "source_file": "src/Subscription/Service/SubscriptionService.php", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_createfrompayment", - "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat", - "confidence_score": 1.0 + "target": "service_subscriptionservice_subscriptionservice_calculateexpiresat" }, { "relation": "references", @@ -147718,9 +147749,9 @@ "source_location": "L91", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "service_subscriptionservice_subscriptionservice_createfrompayment", - "target": "src_subscription_service_subscriptionservice_php_payment", - "confidence_score": 1.0 + "target": "src_subscription_service_subscriptionservice_php_payment" }, { "relation": "contains", @@ -147728,9 +147759,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller" }, { "relation": "imports", @@ -147739,9 +147770,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "imports", @@ -147750,9 +147781,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller", - "target": "src_tag_controller_tagcontroller_php_request", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_request" }, { "relation": "imports", @@ -147761,9 +147792,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller", - "target": "tag", - "confidence_score": 1.0 + "target": "tag" }, { "relation": "method", @@ -147771,9 +147802,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_adminlist", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_adminlist" }, { "relation": "method", @@ -147781,9 +147812,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_construct", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_construct" }, { "relation": "method", @@ -147791,9 +147822,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_create", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_create" }, { "relation": "method", @@ -147801,9 +147832,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_delete", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_delete" }, { "relation": "method", @@ -147811,9 +147842,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_list", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_list" }, { "relation": "method", @@ -147821,9 +147852,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_slugify", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_slugify" }, { "relation": "method", @@ -147831,9 +147862,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller", - "target": "controller_tagcontroller_tagcontroller_update", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_update" }, { "relation": "references", @@ -147842,9 +147873,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_list", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "references", @@ -147853,9 +147884,9 @@ "source_location": "L81", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_adminlist", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "references", @@ -147864,9 +147895,9 @@ "source_location": "L31", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_create", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "references", @@ -147875,9 +147906,9 @@ "source_location": "L68", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_delete", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "references", @@ -147886,9 +147917,9 @@ "source_location": "L50", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_update", - "target": "src_tag_controller_tagcontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_jsonresponse" }, { "relation": "calls", @@ -147897,9 +147928,9 @@ "source_file": "src/Tag/Controller/TagController.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_create", - "target": "controller_tagcontroller_tagcontroller_slugify", - "confidence_score": 1.0 + "target": "controller_tagcontroller_tagcontroller_slugify" }, { "relation": "references", @@ -147908,9 +147939,9 @@ "source_location": "L31", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_create", - "target": "src_tag_controller_tagcontroller_php_request", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_request" }, { "relation": "references", @@ -147919,9 +147950,9 @@ "source_location": "L81", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_adminlist", - "target": "src_tag_controller_tagcontroller_php_request", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_request" }, { "relation": "references", @@ -147930,9 +147961,9 @@ "source_location": "L50", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_tagcontroller_tagcontroller_update", - "target": "src_tag_controller_tagcontroller_php_request", - "confidence_score": 1.0 + "target": "src_tag_controller_tagcontroller_php_request" }, { "relation": "contains", @@ -147940,9 +147971,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag", - "target": "entity_tag_tag", - "confidence_score": 1.0 + "target": "entity_tag_tag" }, { "relation": "method", @@ -147950,9 +147981,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_construct", - "confidence_score": 1.0 + "target": "entity_tag_tag_construct" }, { "relation": "method", @@ -147960,9 +147991,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_getid", - "confidence_score": 1.0 + "target": "entity_tag_tag_getid" }, { "relation": "method", @@ -147970,9 +148001,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_getname", - "confidence_score": 1.0 + "target": "entity_tag_tag_getname" }, { "relation": "method", @@ -147980,9 +148011,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_getslug", - "confidence_score": 1.0 + "target": "entity_tag_tag_getslug" }, { "relation": "method", @@ -147990,9 +148021,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_getstatus", - "confidence_score": 1.0 + "target": "entity_tag_tag_getstatus" }, { "relation": "method", @@ -148000,9 +148031,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_getuuid", - "confidence_score": 1.0 + "target": "entity_tag_tag_getuuid" }, { "relation": "method", @@ -148010,9 +148041,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_setname", - "confidence_score": 1.0 + "target": "entity_tag_tag_setname" }, { "relation": "method", @@ -148020,9 +148051,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_setslug", - "confidence_score": 1.0 + "target": "entity_tag_tag_setslug" }, { "relation": "method", @@ -148030,9 +148061,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_setstatus", - "confidence_score": 1.0 + "target": "entity_tag_tag_setstatus" }, { "relation": "method", @@ -148040,9 +148071,9 @@ "source_file": "src/Tag/Entity/Tag.php", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_tag_tag", - "target": "entity_tag_tag_toarray", - "confidence_score": 1.0 + "target": "entity_tag_tag_toarray" }, { "relation": "references", @@ -148051,9 +148082,9 @@ "source_location": "L45", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tag_tag_setname", - "target": "src_tag_entity_tag_php_self", - "confidence_score": 1.0 + "target": "src_tag_entity_tag_php_self" }, { "relation": "references", @@ -148062,9 +148093,9 @@ "source_location": "L46", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tag_tag_setslug", - "target": "src_tag_entity_tag_php_self", - "confidence_score": 1.0 + "target": "src_tag_entity_tag_php_self" }, { "relation": "references", @@ -148073,9 +148104,9 @@ "source_location": "L47", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_tag_tag_setstatus", - "target": "src_tag_entity_tag_php_self", - "confidence_score": 1.0 + "target": "src_tag_entity_tag_php_self" }, { "relation": "contains", @@ -148083,9 +148114,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository", - "target": "repository_tagrepository_tagrepository", - "confidence_score": 1.0 + "target": "repository_tagrepository_tagrepository" }, { "relation": "imports", @@ -148094,9 +148125,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository", - "target": "src_tag_repository_tagrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_tag_repository_tagrepository_php_managerregistry" }, { "relation": "imports", @@ -148105,9 +148136,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository", - "target": "tag", - "confidence_score": 1.0 + "target": "tag" }, { "relation": "method", @@ -148115,9 +148146,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository", - "target": "repository_tagrepository_tagrepository_construct", - "confidence_score": 1.0 + "target": "repository_tagrepository_tagrepository_construct" }, { "relation": "method", @@ -148125,9 +148156,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository", - "target": "repository_tagrepository_tagrepository_findactive", - "confidence_score": 1.0 + "target": "repository_tagrepository_tagrepository_findactive" }, { "relation": "method", @@ -148135,9 +148166,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository", - "target": "repository_tagrepository_tagrepository_remove", - "confidence_score": 1.0 + "target": "repository_tagrepository_tagrepository_remove" }, { "relation": "method", @@ -148145,9 +148176,9 @@ "source_file": "src/Tag/Repository/TagRepository.php", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository", - "target": "repository_tagrepository_tagrepository_save", - "confidence_score": 1.0 + "target": "repository_tagrepository_tagrepository_save" }, { "relation": "references", @@ -148156,9 +148187,9 @@ "source_location": "L11", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository_construct", - "target": "src_tag_repository_tagrepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_tag_repository_tagrepository_php_managerregistry" }, { "relation": "references_constant", @@ -148177,9 +148208,9 @@ "source_location": "L26", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository_save", - "target": "tag", - "confidence_score": 1.0 + "target": "tag" }, { "relation": "references", @@ -148188,9 +148219,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_tagrepository_tagrepository_remove", - "target": "tag", - "confidence_score": 1.0 + "target": "tag" }, { "relation": "contains", @@ -148198,9 +148229,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller" }, { "relation": "imports", @@ -148209,9 +148240,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "imports", @@ -148220,9 +148251,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "src_userprofile_controller_userprofilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_request" }, { "relation": "imports", @@ -148231,9 +148262,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "imports", @@ -148242,9 +148273,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller", - "target": "src_userprofile_controller_userprofilecontroller_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_userprofile" }, { "relation": "method", @@ -148252,9 +148283,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_canaccess", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_canaccess" }, { "relation": "method", @@ -148262,9 +148293,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_construct", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_construct" }, { "relation": "method", @@ -148272,9 +148303,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_create", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_create" }, { "relation": "method", @@ -148282,9 +148313,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_delete", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_delete" }, { "relation": "method", @@ -148292,9 +148323,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode" }, { "relation": "method", @@ -148302,9 +148333,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_hydrate", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_hydrate" }, { "relation": "method", @@ -148312,9 +148343,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile" }, { "relation": "method", @@ -148322,9 +148353,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_show", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_show" }, { "relation": "method", @@ -148332,9 +148363,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_update", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_update" }, { "relation": "method", @@ -148342,9 +148373,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller", - "target": "controller_userprofilecontroller_userprofilecontroller_uploadavatar", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_uploadavatar" }, { "relation": "references", @@ -148353,9 +148384,9 @@ "source_location": "L32", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_uploadavatar", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "references", @@ -148364,9 +148395,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_uploadavatar", - "target": "src_userprofile_controller_userprofilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_request" }, { "relation": "references", @@ -148375,9 +148406,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_uploadavatar", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148386,9 +148417,9 @@ "source_location": "L86", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_create", - "target": "src_userprofile_controller_userprofilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_request" }, { "relation": "references", @@ -148397,9 +148428,9 @@ "source_location": "L124", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "src_userprofile_controller_userprofilecontroller_php_request", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_request" }, { "relation": "references", @@ -148408,9 +148439,9 @@ "source_location": "L200", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_canaccess", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148419,9 +148450,9 @@ "source_location": "L86", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_create", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148430,9 +148461,9 @@ "source_location": "L171", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_resolveprofile", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148441,9 +148472,9 @@ "source_location": "L106", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_show", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148452,9 +148483,9 @@ "source_location": "L124", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "src_userprofile_controller_userprofilecontroller_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_user" }, { "relation": "references", @@ -148463,9 +148494,9 @@ "source_location": "L86", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_create", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "references", @@ -148474,9 +148505,9 @@ "source_location": "L149", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_delete", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "references", @@ -148485,9 +148516,9 @@ "source_location": "L211", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "references", @@ -148496,9 +148527,9 @@ "source_location": "L106", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_show", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "references", @@ -148507,9 +148538,9 @@ "source_location": "L124", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_jsonresponse" }, { "relation": "calls", @@ -148518,9 +148549,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_create", - "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode" }, { "relation": "calls", @@ -148529,9 +148560,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_create", - "target": "controller_userprofilecontroller_userprofilecontroller_hydrate", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_hydrate" }, { "relation": "calls", @@ -148540,9 +148571,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_show", - "target": "controller_userprofilecontroller_userprofilecontroller_canaccess", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_canaccess" }, { "relation": "calls", @@ -148551,9 +148582,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_show", - "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile" }, { "relation": "calls", @@ -148562,9 +148593,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "controller_userprofilecontroller_userprofilecontroller_canaccess", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_canaccess" }, { "relation": "calls", @@ -148573,9 +148604,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode" }, { "relation": "calls", @@ -148584,9 +148615,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "controller_userprofilecontroller_userprofilecontroller_hydrate", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_hydrate" }, { "relation": "calls", @@ -148595,9 +148626,9 @@ "source_file": "src/UserProfile/Controller/UserProfileController.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_update", - "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile", - "confidence_score": 1.0 + "target": "controller_userprofilecontroller_userprofilecontroller_resolveprofile" }, { "relation": "references", @@ -148606,9 +148637,9 @@ "source_location": "L171", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_resolveprofile", - "target": "src_userprofile_controller_userprofilecontroller_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_userprofile" }, { "relation": "references", @@ -148617,9 +148648,9 @@ "source_location": "L200", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_canaccess", - "target": "src_userprofile_controller_userprofilecontroller_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_userprofile" }, { "relation": "references", @@ -148628,9 +148659,9 @@ "source_location": "L211", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_guardnationalcode", - "target": "src_userprofile_controller_userprofilecontroller_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_userprofile" }, { "relation": "references", @@ -148639,9 +148670,9 @@ "source_location": "L237", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "controller_userprofilecontroller_userprofilecontroller_hydrate", - "target": "src_userprofile_controller_userprofilecontroller_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_controller_userprofilecontroller_php_userprofile" }, { "relation": "contains", @@ -148649,9 +148680,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile", - "target": "entity_userprofile_userprofile", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile" }, { "relation": "imports", @@ -148660,9 +148691,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile", - "target": "src_userprofile_entity_userprofile_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_user" }, { "relation": "method", @@ -148670,9 +148701,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_construct", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_construct" }, { "relation": "method", @@ -148680,9 +148711,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getaddress", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getaddress" }, { "relation": "method", @@ -148690,9 +148721,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getavatar", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getavatar" }, { "relation": "method", @@ -148700,9 +148731,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getbasicinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getbasicinsuranceid" }, { "relation": "method", @@ -148710,9 +148741,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getbloodtype", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getbloodtype" }, { "relation": "method", @@ -148720,9 +148751,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getcreatedat", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getcreatedat" }, { "relation": "method", @@ -148730,9 +148761,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getdateofbirth", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getdateofbirth" }, { "relation": "method", @@ -148740,9 +148771,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getdescription", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getdescription" }, { "relation": "method", @@ -148750,9 +148781,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_geteducation", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_geteducation" }, { "relation": "method", @@ -148760,9 +148791,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getfamily", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getfamily" }, { "relation": "method", @@ -148770,9 +148801,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getfathersname", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getfathersname" }, { "relation": "method", @@ -148780,9 +148811,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getgender", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getgender" }, { "relation": "method", @@ -148790,9 +148821,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_gethomephone", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_gethomephone" }, { "relation": "method", @@ -148800,9 +148831,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getid" }, { "relation": "method", @@ -148810,9 +148841,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getinsuranceid" }, { "relation": "method", @@ -148820,9 +148851,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getjob", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getjob" }, { "relation": "method", @@ -148830,9 +148861,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getlabel", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getlabel" }, { "relation": "method", @@ -148840,9 +148871,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getmaritalstatus", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getmaritalstatus" }, { "relation": "method", @@ -148850,9 +148881,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getnationalcode", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getnationalcode" }, { "relation": "method", @@ -148860,9 +148891,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getother", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getother" }, { "relation": "method", @@ -148870,9 +148901,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getsupplementaryinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getsupplementaryinsuranceid" }, { "relation": "method", @@ -148880,9 +148911,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getupdatedat", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getupdatedat" }, { "relation": "method", @@ -148890,9 +148921,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getuser", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getuser" }, { "relation": "method", @@ -148900,9 +148931,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getuuid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getuuid" }, { "relation": "method", @@ -148910,9 +148941,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_getworkphone", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getworkphone" }, { "relation": "method", @@ -148920,9 +148951,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_isnationalcodeapproved", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_isnationalcodeapproved" }, { "relation": "method", @@ -148930,9 +148961,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_issharingwithuser", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_issharingwithuser" }, { "relation": "method", @@ -148940,9 +148971,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setaddress", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setaddress" }, { "relation": "method", @@ -148950,9 +148981,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setavatar", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setavatar" }, { "relation": "method", @@ -148960,9 +148991,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setbasicinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setbasicinsuranceid" }, { "relation": "method", @@ -148970,9 +149001,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setbloodtype", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setbloodtype" }, { "relation": "method", @@ -148980,9 +149011,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setdateofbirth", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setdateofbirth" }, { "relation": "method", @@ -148990,9 +149021,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setdescription", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setdescription" }, { "relation": "method", @@ -149000,9 +149031,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_seteducation", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_seteducation" }, { "relation": "method", @@ -149010,9 +149041,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setfamily", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setfamily" }, { "relation": "method", @@ -149020,9 +149051,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setfathersname", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setfathersname" }, { "relation": "method", @@ -149030,9 +149061,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setgender", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setgender" }, { "relation": "method", @@ -149040,9 +149071,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_sethomephone", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_sethomephone" }, { "relation": "method", @@ -149050,9 +149081,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setinsuranceid" }, { "relation": "method", @@ -149060,9 +149091,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setjob", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setjob" }, { "relation": "method", @@ -149070,9 +149101,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setlabel", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setlabel" }, { "relation": "method", @@ -149080,9 +149111,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setmaritalstatus", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setmaritalstatus" }, { "relation": "method", @@ -149090,9 +149121,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setnationalcode", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setnationalcode" }, { "relation": "method", @@ -149100,9 +149131,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setnationalcodeapproved", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setnationalcodeapproved" }, { "relation": "method", @@ -149110,9 +149141,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setother", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setother" }, { "relation": "method", @@ -149120,9 +149151,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setsharingwithuser", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setsharingwithuser" }, { "relation": "method", @@ -149130,9 +149161,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setsupplementaryinsuranceid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setsupplementaryinsuranceid" }, { "relation": "method", @@ -149140,9 +149171,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_setworkphone", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_setworkphone" }, { "relation": "method", @@ -149150,9 +149181,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_toarray", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_toarray" }, { "relation": "method", @@ -149160,9 +149191,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L154", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "references", @@ -149171,9 +149202,9 @@ "source_location": "L23", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile", - "target": "src_userprofile_entity_userprofile_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_user" }, { "relation": "references", @@ -149182,9 +149213,9 @@ "source_location": "L96", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_construct", - "target": "src_userprofile_entity_userprofile_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_user" }, { "relation": "references", @@ -149193,9 +149224,9 @@ "source_location": "L106", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_getuser", - "target": "src_userprofile_entity_userprofile_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_user" }, { "relation": "calls", @@ -149204,9 +149235,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_toarray", - "target": "entity_userprofile_userprofile_getuuid", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_getuuid" }, { "relation": "references", @@ -149215,9 +149246,9 @@ "source_location": "L132", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setlabel", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149226,9 +149257,9 @@ "source_location": "L143", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setaddress", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149237,9 +149268,9 @@ "source_location": "L152", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setavatar", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149248,9 +149279,9 @@ "source_location": "L147", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setbasicinsuranceid", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149259,9 +149290,9 @@ "source_location": "L139", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setbloodtype", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149270,9 +149301,9 @@ "source_location": "L138", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setdateofbirth", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149281,9 +149312,9 @@ "source_location": "L151", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setdescription", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149292,9 +149323,9 @@ "source_location": "L141", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_seteducation", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149303,9 +149334,9 @@ "source_location": "L133", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setfamily", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149314,9 +149345,9 @@ "source_location": "L134", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setfathersname", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149325,9 +149356,9 @@ "source_location": "L137", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setgender", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149336,9 +149367,9 @@ "source_location": "L144", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_sethomephone", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149347,9 +149378,9 @@ "source_location": "L146", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setinsuranceid", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149358,9 +149389,9 @@ "source_location": "L142", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setjob", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149369,9 +149400,9 @@ "source_location": "L140", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setmaritalstatus", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149380,9 +149411,9 @@ "source_location": "L135", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setnationalcode", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149391,9 +149422,9 @@ "source_location": "L136", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setnationalcodeapproved", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149402,9 +149433,9 @@ "source_location": "L149", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setother", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149413,9 +149444,9 @@ "source_location": "L150", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setsharingwithuser", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149424,9 +149455,9 @@ "source_location": "L148", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setsupplementaryinsuranceid", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "references", @@ -149435,9 +149466,9 @@ "source_location": "L145", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setworkphone", - "target": "src_userprofile_entity_userprofile_php_self", - "confidence_score": 1.0 + "target": "src_userprofile_entity_userprofile_php_self" }, { "relation": "calls", @@ -149446,9 +149477,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setfamily", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149457,9 +149488,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setfathersname", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149468,9 +149499,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setnationalcode", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149479,9 +149510,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setnationalcodeapproved", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149490,9 +149521,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setgender", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149501,9 +149532,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setdateofbirth", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149512,9 +149543,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setbloodtype", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149523,9 +149554,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setmaritalstatus", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149534,9 +149565,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_seteducation", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149545,9 +149576,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setjob", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149556,9 +149587,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setaddress", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149567,9 +149598,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_sethomephone", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149578,9 +149609,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setworkphone", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149589,9 +149620,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setinsuranceid", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149600,9 +149631,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setbasicinsuranceid", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149611,9 +149642,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setsupplementaryinsuranceid", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149622,9 +149653,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setother", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149633,9 +149664,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setsharingwithuser", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149644,9 +149675,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setdescription", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "calls", @@ -149655,9 +149686,9 @@ "source_file": "src/UserProfile/Entity/UserProfile.php", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "entity_userprofile_userprofile_setavatar", - "target": "entity_userprofile_userprofile_touch", - "confidence_score": 1.0 + "target": "entity_userprofile_userprofile_touch" }, { "relation": "contains", @@ -149665,9 +149696,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository" }, { "relation": "imports", @@ -149676,9 +149707,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository", - "target": "src_userprofile_repository_userprofilerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_managerregistry" }, { "relation": "imports", @@ -149687,9 +149718,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository", - "target": "src_userprofile_repository_userprofilerepository_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_user" }, { "relation": "imports", @@ -149698,9 +149729,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "method", @@ -149708,9 +149739,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_construct", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_construct" }, { "relation": "method", @@ -149718,9 +149749,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_findbyuser", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_findbyuser" }, { "relation": "method", @@ -149728,9 +149759,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_findbyuuid", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_findbyuuid" }, { "relation": "method", @@ -149738,9 +149769,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_findonebynationalcode", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_findonebynationalcode" }, { "relation": "method", @@ -149748,9 +149779,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_remove", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_remove" }, { "relation": "method", @@ -149758,9 +149789,9 @@ "source_file": "src/UserProfile/Repository/UserProfileRepository.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository", - "target": "repository_userprofilerepository_userprofilerepository_save", - "confidence_score": 1.0 + "target": "repository_userprofilerepository_userprofilerepository_save" }, { "relation": "references", @@ -149769,9 +149800,9 @@ "source_location": "L12", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_construct", - "target": "src_userprofile_repository_userprofilerepository_php_managerregistry", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_managerregistry" }, { "relation": "references_constant", @@ -149790,9 +149821,9 @@ "source_location": "L17", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_findbyuser", - "target": "src_userprofile_repository_userprofilerepository_php_user", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_user" }, { "relation": "references", @@ -149801,9 +149832,9 @@ "source_location": "L17", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_findbyuser", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "references", @@ -149812,9 +149843,9 @@ "source_location": "L22", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_findbyuuid", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "references", @@ -149823,9 +149854,9 @@ "source_location": "L27", "weight": 1.0, "context": "return_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_findonebynationalcode", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "references", @@ -149834,9 +149865,9 @@ "source_location": "L40", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_remove", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "references", @@ -149845,9 +149876,9 @@ "source_location": "L32", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "repository_userprofilerepository_userprofilerepository_save", - "target": "src_userprofile_repository_userprofilerepository_php_userprofile", - "confidence_score": 1.0 + "target": "src_userprofile_repository_userprofilerepository_php_userprofile" }, { "relation": "contains", @@ -149855,9 +149886,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest" }, { "relation": "imports", @@ -149866,9 +149897,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest", - "target": "billingcalculator", - "confidence_score": 1.0 + "target": "billingcalculator" }, { "relation": "imports", @@ -149877,9 +149908,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest", - "target": "testcase", - "confidence_score": 1.0 + "target": "testcase" }, { "relation": "method", @@ -149887,9 +149918,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_setup", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_setup" }, { "relation": "method", @@ -149897,9 +149928,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testbaseandsupplementary", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testbaseandsupplementary" }, { "relation": "method", @@ -149907,9 +149938,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testbaseceilingcapsshare", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testbaseceilingcapsshare" }, { "relation": "method", @@ -149917,9 +149948,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testbaseonly", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testbaseonly" }, { "relation": "method", @@ -149927,9 +149958,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testfranchiseaddedtopatient", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testfranchiseaddedtopatient" }, { "relation": "method", @@ -149937,9 +149968,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testnoinsuranceallpatient", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testnoinsuranceallpatient" }, { "relation": "method", @@ -149947,9 +149978,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billing_billingcalculatortest_billingcalculatortest_testnotcoveredrule", - "confidence_score": 1.0 + "target": "billing_billingcalculatortest_billingcalculatortest_testnotcoveredrule" }, { "relation": "references", @@ -149958,9 +149989,9 @@ "source_location": "L12", "weight": 1.0, "context": "field", + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "billingcalculator", - "confidence_score": 1.0 + "target": "billingcalculator" }, { "relation": "inherits", @@ -149968,9 +149999,9 @@ "source_file": "tests/Billing/BillingCalculatorTest.php", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "billing_billingcalculatortest_billingcalculatortest", - "target": "testcase", - "confidence_score": 1.0 + "target": "testcase" }, { "relation": "contains", @@ -149978,9 +150009,9 @@ "source_file": "tsconfig.json", "source_location": "L2", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig", - "target": "tsconfig_compileroptions", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions" }, { "relation": "contains", @@ -149988,9 +150019,9 @@ "source_file": "tsconfig.json", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig", - "target": "tsconfig_exclude", - "confidence_score": 1.0 + "target": "tsconfig_exclude" }, { "relation": "contains", @@ -149998,9 +150029,9 @@ "source_file": "tsconfig.json", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig", - "target": "tsconfig_include", - "confidence_score": 1.0 + "target": "tsconfig_include" }, { "relation": "contains", @@ -150008,9 +150039,9 @@ "source_file": "tsconfig.json", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_allowsyntheticdefaultimports", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_allowsyntheticdefaultimports" }, { "relation": "contains", @@ -150018,9 +150049,9 @@ "source_file": "tsconfig.json", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_baseurl", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_baseurl" }, { "relation": "contains", @@ -150028,9 +150059,9 @@ "source_file": "tsconfig.json", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_esmoduleinterop" }, { "relation": "contains", @@ -150038,9 +150069,9 @@ "source_file": "tsconfig.json", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_jsx", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_jsx" }, { "relation": "contains", @@ -150048,9 +150079,9 @@ "source_file": "tsconfig.json", "source_location": "L4", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_module", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_module" }, { "relation": "contains", @@ -150058,9 +150089,9 @@ "source_file": "tsconfig.json", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_moduleresolution" }, { "relation": "contains", @@ -150068,9 +150099,9 @@ "source_file": "tsconfig.json", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_paths", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_paths" }, { "relation": "contains", @@ -150078,9 +150109,9 @@ "source_file": "tsconfig.json", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -150088,9 +150119,9 @@ "source_file": "tsconfig.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_strict", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_strict" }, { "relation": "contains", @@ -150098,9 +150129,9 @@ "source_file": "tsconfig.json", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions", - "target": "tsconfig_compileroptions_target", - "confidence_score": 1.0 + "target": "tsconfig_compileroptions_target" }, { "relation": "contains", @@ -150108,9 +150139,9 @@ "source_file": "tsconfig.json", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "tsconfig_compileroptions_paths", - "target": "tsconfig_paths", - "confidence_score": 1.0 + "target": "tsconfig_paths" }, { "relation": "contains", @@ -150118,9 +150149,9 @@ "source_file": "webpack.config.js", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "webpack_config", - "target": "webpack_config_encore", - "confidence_score": 1.0 + "target": "webpack_config_encore" }, { "relation": "contains", @@ -150128,9 +150159,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa", - "target": "prompt_admin_pwa_admin_panel_pwa", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_admin_panel_pwa" }, { "relation": "contains", @@ -150138,9 +150169,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_admin_panel_pwa", - "target": "prompt_admin_pwa_\u062a\u0633\u062a_\u067e\u0633_\u0627\u0632_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u062a\u0633\u062a_\u067e\u0633_\u0627\u0632_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a" }, { "relation": "contains", @@ -150148,9 +150179,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_admin_panel_pwa", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632" }, { "relation": "contains", @@ -150158,9 +150189,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_admin_panel_pwa", - "target": "prompt_admin_pwa_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0646\u06a9\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0646\u06a9\u0627\u062a" }, { "relation": "contains", @@ -150168,9 +150199,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_admin_panel_pwa", - "target": "prompt_admin_pwa_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -150178,9 +150209,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_web_app_manifest", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_web_app_manifest" }, { "relation": "contains", @@ -150188,9 +150219,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_service_worker_cache_shell", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_service_worker_cache_shell" }, { "relation": "contains", @@ -150198,9 +150229,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_\u062b\u0628\u062a_service_worker_\u062f\u0631_react", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_\u062b\u0628\u062a_service_worker_\u062f\u0631_react" }, { "relation": "contains", @@ -150208,9 +150239,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_install_prompt_banner_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u0645\u0627_\u0645\u0637\u0644\u0648\u0628", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_install_prompt_banner_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u0645\u0627_\u0645\u0637\u0644\u0648\u0628" }, { "relation": "contains", @@ -150218,9 +150249,9 @@ "source_file": ".claude/prompt/admin-pwa.md", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_pwa_\u062a\u0633\u062a_\u067e\u0633_\u0627\u0632_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0627\u0645\u067e\u062a_\u0646\u0635\u0628_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0644\u0627\u06af\u06cc\u0646", - "confidence_score": 1.0 + "target": "prompt_admin_pwa_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0627\u0645\u067e\u062a_\u0646\u0635\u0628_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0644\u0627\u06af\u06cc\u0646" }, { "relation": "contains", @@ -150228,9 +150259,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign", - "target": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri" }, { "relation": "contains", @@ -150238,9 +150269,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -150248,9 +150279,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -150258,9 +150289,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -150268,9 +150299,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -150278,9 +150309,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -150288,9 +150319,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0628\u0635\u0631\u06cc_\u0647\u062f\u0641_\u0627\u0632_\u0627\u0633\u06a9\u0631\u06cc\u0646_\u0634\u0627\u062a_\u0647\u0627\u06cc_tauri", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0628\u0635\u0631\u06cc_\u0647\u062f\u0641_\u0627\u0632_\u0627\u0633\u06a9\u0631\u06cc\u0646_\u0634\u0627\u062a_\u0647\u0627\u06cc_tauri" }, { "relation": "contains", @@ -150298,9 +150329,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_ui_kit_\u0627\u0644\u0647\u0627\u0645_\u06af\u0631\u0641\u062a\u0647_\u0627\u0632_clinic_pro_tauri", - "target": "prompt_admin_ui_kit_redesign_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -150308,9 +150339,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_ui_kit_redesign_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0648_\u06cc\u06a9\u0633\u0627\u0646_\u0633\u0627\u0632\u06cc_\u062a\u0648\u06a9\u0646_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0648_\u06cc\u06a9\u0633\u0627\u0646_\u0633\u0627\u0632\u06cc_\u062a\u0648\u06a9\u0646_\u0647\u0627" }, { "relation": "contains", @@ -150318,9 +150349,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_ui_kit_redesign_\u06f2_\u0633\u0627\u062e\u062a_\u062a\u06a9\u0645\u06cc\u0644_ui_kit_\u062f\u0631_assets_admin_components_ui", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u06f2_\u0633\u0627\u062e\u062a_\u062a\u06a9\u0645\u06cc\u0644_ui_kit_\u062f\u0631_assets_admin_components_ui" }, { "relation": "contains", @@ -150328,9 +150359,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_ui_kit_redesign_\u06f3_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0631\u0648\u06cc_ui_kit", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u06f3_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0631\u0648\u06cc_ui_kit" }, { "relation": "contains", @@ -150338,9 +150369,9 @@ "source_file": ".claude/prompt/admin-ui-kit-redesign.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_ui_kit_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_ui_kit_redesign_\u06f4_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_ui_kit_redesign_\u06f4_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647" }, { "relation": "contains", @@ -150348,9 +150379,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile", - "target": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -150358,9 +150389,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -150368,9 +150399,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -150378,9 +150409,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -150388,9 +150419,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -150398,9 +150429,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -150408,9 +150439,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -150418,9 +150449,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_admin_user_detail_show_profile_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -150428,9 +150459,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_admin_user_detail_show_profile_userdetailpage_tsx_\u0641\u0642\u0637_user_query", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_userdetailpage_tsx_\u0641\u0642\u0637_user_query" }, { "relation": "contains", @@ -150438,9 +150469,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_admin_user_detail_show_profile_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_userprofile_toarray", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_userprofile_toarray" }, { "relation": "contains", @@ -150448,9 +150479,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_user_detail_show_profile_\u06f1_\u06a9\u0648\u0626\u0631\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u0631_userdetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u06f1_\u06a9\u0648\u0626\u0631\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u0631_userdetailpage_tsx" }, { "relation": "contains", @@ -150458,9 +150489,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_user_detail_show_profile_\u06f2_\u0628\u062e\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_read_only_\u062f\u0631_\u0631\u0646\u062f\u0631", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u06f2_\u0628\u062e\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_read_only_\u062f\u0631_\u0631\u0646\u062f\u0631" }, { "relation": "contains", @@ -150468,9 +150499,9 @@ "source_file": ".claude/prompt/admin-user-detail-show-profile.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_admin_user_detail_show_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_admin_user_detail_show_profile_\u06f3_\u062d\u0627\u0644\u062a_\u0647\u0627\u06cc_loading_\u062e\u0627\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_admin_user_detail_show_profile_\u06f3_\u062d\u0627\u0644\u062a_\u0647\u0627\u06cc_loading_\u062e\u0627\u0644\u06cc" }, { "relation": "contains", @@ -150478,9 +150509,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich", - "target": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9" }, { "relation": "contains", @@ -150488,9 +150519,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -150498,9 +150529,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -150508,9 +150539,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -150518,9 +150549,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -150528,9 +150559,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -150538,9 +150569,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -150548,9 +150579,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u0646\u0648\u0628\u062a_\u0628\u0627_\u062a\u062e\u0635\u0635_\u0648_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointment_detail_enrich_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -150558,9 +150589,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_detail_enrich_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_specialties_\u0648_address_\u0628\u0647_doctor_\u062f\u0631_appointment_toarray", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_specialties_\u0648_address_\u0628\u0647_doctor_\u062f\u0631_appointment_toarray" }, { "relation": "contains", @@ -150568,9 +150599,9 @@ "source_file": ".claude/prompt/appointment-detail-enrich.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_detail_enrich_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_detail_enrich_\u06f2_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_appointment_md", - "confidence_score": 1.0 + "target": "prompt_appointment_detail_enrich_\u06f2_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_appointment_md" }, { "relation": "contains", @@ -150578,9 +150609,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm", - "target": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -150588,9 +150619,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -150598,9 +150629,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -150608,9 +150639,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -150618,9 +150649,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -150628,9 +150659,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -150638,9 +150669,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -150648,9 +150679,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0642\u0641\u0644_\u06f1\u06f5_\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u0627_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a_\u06a9\u0646\u0646\u062f\u0647_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u067e\u0633_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "prompt_appointment_lock_patient_confirm_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -150658,9 +150689,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_appointment_lock_patient_confirm_appointment_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627_optimistic_lock_\u0628\u062f\u0648\u0646_expiresat_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_appointment_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627_optimistic_lock_\u0628\u062f\u0648\u0646_expiresat_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -150668,9 +150699,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_appointment_lock_patient_confirm_book_\u0628\u062f\u0648\u0646_\u0641\u06cc\u0644\u062f_\u0628\u06cc\u0645\u0627\u0631_\u0628\u062f\u0648\u0646_expiresat", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_book_\u0628\u062f\u0648\u0646_\u0641\u06cc\u0644\u062f_\u0628\u06cc\u0645\u0627\u0631_\u0628\u062f\u0648\u0646_expiresat" }, { "relation": "contains", @@ -150678,9 +150709,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_appointment_lock_patient_confirm_findexpiredpending_command_\u0645\u0628\u0646\u0627_\u0632\u0645\u0627\u0646_\u0648\u06cc\u0632\u06cc\u062a_\u06af\u0630\u0634\u062a\u0647_\u0646\u0647_\u0645\u0647\u0644\u062a_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_findexpiredpending_command_\u0645\u0628\u0646\u0627_\u0632\u0645\u0627\u0646_\u0648\u06cc\u0632\u06cc\u062a_\u06af\u0630\u0634\u062a\u0647_\u0646\u0647_\u0645\u0647\u0644\u062a_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -150688,9 +150719,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_appointment_lock_patient_confirm_isslottaken_pending_\u0631\u0627_\u0642\u0641\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u0648\u0644\u06cc_\u0627\u0646\u0642\u0636\u0627_\u0631\u0627_\u0646\u0645\u06cc_\u0628\u06cc\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_isslottaken_pending_\u0631\u0627_\u0642\u0641\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u0648\u0644\u06cc_\u0627\u0646\u0642\u0636\u0627_\u0631\u0627_\u0646\u0645\u06cc_\u0628\u06cc\u0646\u062f" }, { "relation": "contains", @@ -150698,9 +150729,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_appointment_lock_patient_confirm_paymentcontroller_handlecallback_\u0634\u0627\u062e\u0647_\u06cc_appointment_\u063a\u0627\u06cc\u0628", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_paymentcontroller_handlecallback_\u0634\u0627\u062e\u0647_\u06cc_appointment_\u063a\u0627\u06cc\u0628" }, { "relation": "contains", @@ -150708,9 +150739,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_expiresat_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_appointment_migration", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_expiresat_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_appointment_migration" }, { "relation": "contains", @@ -150718,9 +150749,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f2_\u0644\u062d\u0627\u0638_\u06a9\u0631\u062f\u0646_\u0627\u0646\u0642\u0636\u0627_\u062f\u0631_isslottaken_\u0622\u0632\u0627\u062f\u0633\u0627\u0632\u06cc_\u0646\u0631\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_command", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f2_\u0644\u062d\u0627\u0638_\u06a9\u0631\u062f\u0646_\u0627\u0646\u0642\u0636\u0627_\u062f\u0631_isslottaken_\u0622\u0632\u0627\u062f\u0633\u0627\u0632\u06cc_\u0646\u0631\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_command" }, { "relation": "contains", @@ -150728,9 +150759,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f3_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_\u0627\u062a\u0645\u06cc\u06a9_\u0633\u062a_expiresat_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u062f\u0631_book", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f3_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_\u0627\u062a\u0645\u06cc\u06a9_\u0633\u062a_expiresat_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u062f\u0631_book" }, { "relation": "contains", @@ -150738,9 +150769,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f4_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f4_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647" }, { "relation": "contains", @@ -150748,9 +150779,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f5_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a_sms_\u062f\u0631_callback_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f5_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a_sms_\u062f\u0631_callback_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642" }, { "relation": "contains", @@ -150758,9 +150789,9 @@ "source_file": ".claude/prompt/appointment-lock-patient-confirm.md", "source_location": "L212", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointment_lock_patient_confirm_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_appointment_lock_patient_confirm_\u06f6_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointment_lock_patient_confirm_\u06f6_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -150768,9 +150799,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627" }, { "relation": "contains", @@ -150778,9 +150809,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f1_\u06a9\u0631\u0634_\u062a\u0642\u0648\u06cc\u0645", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f1_\u06a9\u0631\u0634_\u062a\u0642\u0648\u06cc\u0645" }, { "relation": "contains", @@ -150788,9 +150819,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator" }, { "relation": "contains", @@ -150798,9 +150829,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f3_\u067e\u06cc\u0627\u0645_slot_\u0646\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f3_\u067e\u06cc\u0627\u0645_slot_\u0646\u06cc\u0633\u062a" }, { "relation": "contains", @@ -150808,9 +150839,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f4_\u0646\u0648\u0628\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0627\u0645_\u0627\u062c\u0628\u0627\u0631\u06cc_find_or_create_patient", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f4_\u0646\u0648\u0628\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0627\u0645_\u0627\u062c\u0628\u0627\u0631\u06cc_find_or_create_patient" }, { "relation": "contains", @@ -150818,9 +150849,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f5_patient_mobile_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f5_patient_mobile_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9" }, { "relation": "contains", @@ -150828,9 +150859,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L319", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f6_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0631\u0632\u0631\u0648_\u0634\u062f\u0647_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f6_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0631\u0632\u0631\u0648_\u0634\u062f\u0647_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc" }, { "relation": "contains", @@ -150838,9 +150869,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L367", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f7_\u062d\u0630\u0641_\u0633\u062a\u0648\u0646_\u0639\u0645\u0644\u06cc\u0627\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc\u0634_\u062c\u062f\u0648\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f7_\u062d\u0630\u0641_\u0633\u062a\u0648\u0646_\u0639\u0645\u0644\u06cc\u0627\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc\u0634_\u062c\u062f\u0648\u0644\u06cc" }, { "relation": "contains", @@ -150848,9 +150879,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L394", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -150858,9 +150889,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631" }, { "relation": "contains", @@ -150868,9 +150899,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u0641\u06cc\u06a9\u0633_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627", - "target": "prompt_appointments_day_of_week_\u0641\u0647\u0631\u0633\u062a_\u0628\u0627\u06af_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u0647\u0631\u0633\u062a_\u0628\u0627\u06af_\u0647\u0627" }, { "relation": "contains", @@ -150878,9 +150909,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f1_\u06a9\u0631\u0634_\u062a\u0642\u0648\u06cc\u0645", - "target": "prompt_appointments_day_of_week_\u0639\u0644\u062a_\u0631\u06cc\u0634\u0647_\u0627\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0639\u0644\u062a_\u0631\u06cc\u0634\u0647_\u0627\u06cc" }, { "relation": "contains", @@ -150888,9 +150919,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f1_\u06a9\u0631\u0634_\u062a\u0642\u0648\u06cc\u0645", - "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633" }, { "relation": "contains", @@ -150898,9 +150929,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator", - "target": "prompt_appointments_day_of_week_\u0627\u0644\u0632\u0627\u0645\u0627\u062a_ui", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0627\u0644\u0632\u0627\u0645\u0627\u062a_ui" }, { "relation": "contains", @@ -150908,9 +150939,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator", - "target": "prompt_appointments_day_of_week_\u0631\u0641\u062a\u0627\u0631_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0631\u0641\u062a\u0627\u0631_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -150918,9 +150949,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator", - "target": "prompt_appointments_day_of_week_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -150928,9 +150959,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f2_\u0631\u0648\u0632_\u0647\u0641\u062a\u0647_\u062f\u0631_datenavigator", - "target": "prompt_appointments_day_of_week_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -150938,9 +150969,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f4_\u0646\u0648\u0628\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0627\u0645_\u0627\u062c\u0628\u0627\u0631\u06cc_find_or_create_patient", - "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_backend", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_backend" }, { "relation": "contains", @@ -150948,9 +150979,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f4_\u0646\u0648\u0628\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0627\u0645_\u0627\u062c\u0628\u0627\u0631\u06cc_find_or_create_patient", - "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_frontend_newappointmentmodal", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_frontend_newappointmentmodal" }, { "relation": "contains", @@ -150958,9 +150989,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f4_\u0646\u0648\u0628\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0627\u0645_\u0627\u062c\u0628\u0627\u0631\u06cc_find_or_create_patient", - "target": "prompt_appointments_day_of_week_\u0645\u0634\u06a9\u0644_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0645\u0634\u06a9\u0644_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -150968,9 +150999,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_backend", - "target": "prompt_appointments_day_of_week_\u06f1_post_api_v1_admin_appointment_\u062f\u0631_adminapicontroller_php", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u06f1_post_api_v1_admin_appointment_\u062f\u0631_adminapicontroller_php" }, { "relation": "contains", @@ -150978,9 +151009,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_backend", - "target": "prompt_appointments_day_of_week_\u06f2_post_api_v1_my_appointment_endpoint_\u062c\u062f\u06cc\u062f_\u062f\u0631_myappointmentscontroller_php", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u06f2_post_api_v1_my_appointment_endpoint_\u062c\u062f\u06cc\u062f_\u062f\u0631_myappointmentscontroller_php" }, { "relation": "contains", @@ -150988,9 +151019,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L292", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f5_patient_mobile_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointments_day_of_week_\u0639\u0644\u062a_\u0631\u06cc\u0634\u0647_\u0627\u06cc_292", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0639\u0644\u062a_\u0631\u06cc\u0634\u0647_\u0627\u06cc_292" }, { "relation": "contains", @@ -150998,9 +151029,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L303", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f5_patient_mobile_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9", - "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_303", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0641\u06cc\u06a9\u0633_303" }, { "relation": "contains", @@ -151008,9 +151039,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L327", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f6_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0631\u0632\u0631\u0648_\u0634\u062f\u0647_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "target": "prompt_appointments_day_of_week_\u0628\u0631\u0631\u0633\u06cc_\u0648_\u0641\u06cc\u06a9\u0633", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0628\u0631\u0631\u0633\u06cc_\u0648_\u0641\u06cc\u06a9\u0633" }, { "relation": "contains", @@ -151018,9 +151049,9 @@ "source_file": ".claude/prompt/appointments-day-of-week.md", "source_location": "L321", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_day_of_week_\u0628\u0627\u06af_\u06f6_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0631\u0632\u0631\u0648_\u0634\u062f\u0647_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "target": "prompt_appointments_day_of_week_\u0645\u0634\u06a9\u0644", - "confidence_score": 1.0 + "target": "prompt_appointments_day_of_week_\u0645\u0634\u06a9\u0644" }, { "relation": "contains", @@ -151028,9 +151059,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign", - "target": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage" }, { "relation": "contains", @@ -151038,9 +151069,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L364", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0627\u0644\u0632\u0627\u0645_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u062f\u0642\u06cc\u0642\u0627_\u0634\u0628\u06cc\u0647_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0627\u0644\u0632\u0627\u0645_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u062f\u0642\u06cc\u0642\u0627_\u0634\u0628\u06cc\u0647_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639" }, { "relation": "contains", @@ -151048,9 +151079,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647" }, { "relation": "contains", @@ -151058,9 +151089,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631" }, { "relation": "contains", @@ -151068,9 +151099,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0645\u0646\u0637\u0642_\u0645\u062d\u0627\u0633\u0628\u0647_slot_\u0647\u0627_slotcalculatorservice", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0645\u0646\u0637\u0642_\u0645\u062d\u0627\u0633\u0628\u0647_slot_\u0647\u0627_slotcalculatorservice" }, { "relation": "contains", @@ -151078,9 +151109,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L224", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_feature_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_feature_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc" }, { "relation": "contains", @@ -151088,9 +151119,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L346", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -151098,9 +151129,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0647\u062f\u0641" }, { "relation": "contains", @@ -151108,9 +151139,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u0648\u0636\u0639\u06cc\u062a_backend_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0648\u0636\u0639\u06cc\u062a_backend_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647" }, { "relation": "contains", @@ -151118,9 +151149,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L284", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_frontend", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_frontend" }, { "relation": "contains", @@ -151128,9 +151159,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_appointmentspage", - "target": "prompt_appointments_redesign_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0646\u0642\u0634_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0646\u0642\u0634_\u0647\u0627" }, { "relation": "contains", @@ -151138,9 +151169,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "target": "prompt_appointments_redesign_\u06f1_\u0646\u0648\u0627\u0631_\u0622\u0645\u0627\u0631_\u0628\u0627\u0644\u0627_stats_bar", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06f1_\u0646\u0648\u0627\u0631_\u0622\u0645\u0627\u0631_\u0628\u0627\u0644\u0627_stats_bar" }, { "relation": "contains", @@ -151148,9 +151179,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "target": "prompt_appointments_redesign_\u06f2_\u0646\u0648\u0627\u0631_\u06a9\u0646\u062a\u0631\u0644_toolbar", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06f2_\u0646\u0648\u0627\u0631_\u06a9\u0646\u062a\u0631\u0644_toolbar" }, { "relation": "contains", @@ -151158,9 +151189,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "target": "prompt_appointments_redesign_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -151168,9 +151199,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "target": "prompt_appointments_redesign_\u06f4_\u0646\u0645\u0627\u06cc_\u062c\u062f\u0648\u0644\u06cc_table_view", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06f4_\u0646\u0645\u0627\u06cc_\u062c\u062f\u0648\u0644\u06cc_table_view" }, { "relation": "contains", @@ -151178,9 +151209,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0633\u0627\u062e\u062a\u0627\u0631_\u06a9\u0644\u06cc_\u0635\u0641\u062d\u0647", - "target": "prompt_appointments_redesign_\u06f5_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc_schedule_view", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u06f5_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc_schedule_view" }, { "relation": "contains", @@ -151188,9 +151219,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0648\u0636\u0639\u06cc\u062a_backend_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647", - "target": "prompt_appointments_redesign_\u0645\u0648\u062c\u0648\u062f_\u0648_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0645\u0648\u062c\u0648\u062f_\u0648_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647" }, { "relation": "contains", @@ -151198,9 +151229,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L196", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0648\u0636\u0639\u06cc\u062a_backend_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647", - "target": "prompt_appointments_redesign_\u0646\u062f\u0627\u0631\u062f_\u0628\u0627\u06cc\u062f_\u0627\u0636\u0627\u0641\u0647_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0646\u062f\u0627\u0631\u062f_\u0628\u0627\u06cc\u062f_\u0627\u0636\u0627\u0641\u0647_\u0634\u0648\u062f" }, { "relation": "contains", @@ -151208,9 +151239,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_feature_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "target": "prompt_appointments_redesign_doctor_tabs_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_doctor_tabs_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -151218,9 +151249,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_feature_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "target": "prompt_appointments_redesign_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_slot_\u062e\u0627\u0644\u06cc_\u0627\u0635\u0644\u06cc_\u062a\u0631\u06cc\u0646_ux", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_slot_\u062e\u0627\u0644\u06cc_\u0627\u0635\u0644\u06cc_\u062a\u0631\u06cc\u0646_ux" }, { "relation": "contains", @@ -151228,9 +151259,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L226", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_feature_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a_\u0627\u0632_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc", - "target": "prompt_appointments_redesign_\u067e\u06cc\u0634_\u0634\u0631\u0637_\u062f\u06a9\u062a\u0631_\u0628\u0627\u06cc\u062f_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc_\u062f\u0627\u0634\u062a\u0647_\u0628\u0627\u0634\u062f", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u067e\u06cc\u0634_\u0634\u0631\u0637_\u062f\u06a9\u062a\u0631_\u0628\u0627\u06cc\u062f_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc_\u062f\u0627\u0634\u062a\u0647_\u0628\u0627\u0634\u062f" }, { "relation": "contains", @@ -151238,9 +151269,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L298", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_frontend", - "target": "prompt_appointments_redesign_appointmentstatusdropdown_tsx", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_appointmentstatusdropdown_tsx" }, { "relation": "contains", @@ -151248,9 +151279,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L286", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_frontend", - "target": "prompt_appointments_redesign_persiancalendar_tsx", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_persiancalendar_tsx" }, { "relation": "contains", @@ -151258,9 +151289,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L380", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0627\u0644\u0632\u0627\u0645_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u062f\u0642\u06cc\u0642\u0627_\u0634\u0628\u06cc\u0647_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639" }, { "relation": "contains", @@ -151268,9 +151299,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L370", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0627\u0644\u0632\u0627\u0645_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u062f\u0642\u06cc\u0642\u0627_\u0634\u0628\u06cc\u0647_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_\u0647\u0645\u0647_\u062a\u0627\u0631\u06cc\u062e_\u0647\u0627_\u0634\u0645\u0633\u06cc_jalali", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u0647\u0645\u0647_\u062a\u0627\u0631\u06cc\u062e_\u0647\u0627_\u0634\u0645\u0633\u06cc_jalali" }, { "relation": "contains", @@ -151278,9 +151309,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L458", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_pagination", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_pagination" }, { "relation": "contains", @@ -151288,9 +151319,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L382", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_stats_bar", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_stats_bar" }, { "relation": "contains", @@ -151298,9 +151329,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_status_badge_inline_\u0642\u0627\u0628\u0644_\u06a9\u0644\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_status_badge_inline_\u0642\u0627\u0628\u0644_\u06a9\u0644\u06cc\u06a9" }, { "relation": "contains", @@ -151308,9 +151339,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_status_dropdown_\u06a9\u0644\u06cc\u06a9_\u0631\u0648\u06cc_badge", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_status_dropdown_\u06a9\u0644\u06cc\u06a9_\u0631\u0648\u06cc_badge" }, { "relation": "contains", @@ -151318,9 +151349,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L398", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_toolbar", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_toolbar" }, { "relation": "contains", @@ -151328,9 +151359,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L441", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_\u062a\u0642\u0648\u06cc\u0645_popup_\u06a9\u0644\u06cc\u06a9_\u0631\u0648\u06cc_\u0622\u06cc\u06a9\u0648\u0646", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u062a\u0642\u0648\u06cc\u0645_popup_\u06a9\u0644\u06cc\u06a9_\u0631\u0648\u06cc_\u0622\u06cc\u06a9\u0648\u0646" }, { "relation": "contains", @@ -151338,9 +151369,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L408", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_\u062c\u062f\u0648\u0644_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u0647\u062f\u0631_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u062c\u062f\u0648\u0644_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u0647\u062f\u0631_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -151348,9 +151379,9 @@ "source_file": ".claude/prompt/appointments-redesign.md", "source_location": "L437", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_appointments_redesign_\u0645\u0634\u062e\u0635\u0627\u062a_\u062f\u0642\u06cc\u0642_\u062f\u06cc\u0632\u0627\u06cc\u0646_\u0627\u0632_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0645\u0631\u062c\u0639", - "target": "prompt_appointments_redesign_\u062f\u06a9\u0645\u0647_\u0639\u0645\u0644\u06cc\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_appointments_redesign_\u062f\u06a9\u0645\u0647_\u0639\u0645\u0644\u06cc\u0627\u062a" }, { "relation": "contains", @@ -151358,9 +151389,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage", - "target": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "confidence_score": 1.0 + "target": "prompt_build_homepage_build_the_clinicpro_public_homepage_at" }, { "relation": "contains", @@ -151368,9 +151399,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_goal", - "confidence_score": 1.0 + "target": "prompt_build_homepage_goal" }, { "relation": "contains", @@ -151378,9 +151409,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_notes", - "confidence_score": 1.0 + "target": "prompt_build_homepage_notes" }, { "relation": "contains", @@ -151388,9 +151419,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_step_1_webpack_entry_for_homepage_css_js", - "confidence_score": 1.0 + "target": "prompt_build_homepage_step_1_webpack_entry_for_homepage_css_js" }, { "relation": "contains", @@ -151398,9 +151429,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_step_2_symfony_controller", - "confidence_score": 1.0 + "target": "prompt_build_homepage_step_2_symfony_controller" }, { "relation": "contains", @@ -151408,9 +151439,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_step_3_twig_template", - "confidence_score": 1.0 + "target": "prompt_build_homepage_step_3_twig_template" }, { "relation": "contains", @@ -151418,9 +151449,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_build_the_clinicpro_public_homepage_at", - "target": "prompt_build_homepage_step_4_build_and_verify", - "confidence_score": 1.0 + "target": "prompt_build_homepage_step_4_build_and_verify" }, { "relation": "contains", @@ -151428,9 +151459,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_step_3_twig_template", - "target": "prompt_build_homepage_body_all_sections", - "confidence_score": 1.0 + "target": "prompt_build_homepage_body_all_sections" }, { "relation": "contains", @@ -151438,9 +151469,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_step_3_twig_template", - "target": "prompt_build_homepage_head", - "confidence_score": 1.0 + "target": "prompt_build_homepage_head" }, { "relation": "contains", @@ -151448,9 +151479,9 @@ "source_file": ".claude/prompt/build-homepage.md", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_build_homepage_step_3_twig_template", - "target": "prompt_build_homepage_twig_specific_adaptations", - "confidence_score": 1.0 + "target": "prompt_build_homepage_twig_specific_adaptations" }, { "relation": "contains", @@ -151458,9 +151489,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes", - "target": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d" }, { "relation": "contains", @@ -151468,9 +151499,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "target": "prompt_clinic_detail_fixes_\u06f1_\u0634\u0647\u0631_\u0627\u0634\u062a\u0628\u0627\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_\u06f1_\u0634\u0647\u0631_\u0627\u0634\u062a\u0628\u0627\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -151478,9 +151509,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "target": "prompt_clinic_detail_fixes_\u06f2_\u0647\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0641\u0642\u0637_\u06cc\u06a9_\u0622\u062f\u0631\u0633", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_\u06f2_\u0647\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0641\u0642\u0637_\u06cc\u06a9_\u0622\u062f\u0631\u0633" }, { "relation": "contains", @@ -151488,9 +151519,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "target": "prompt_clinic_detail_fixes_\u06f3_\u0645\u0648\u062f\u0627\u0644_\u0622\u062f\u0631\u0633_\u0627\u0633\u062a\u0627\u0646_\u0634\u0647\u0631_\u0648_\u0646\u0642\u0634\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_\u06f3_\u0645\u0648\u062f\u0627\u0644_\u0622\u062f\u0631\u0633_\u0627\u0633\u062a\u0627\u0646_\u0634\u0647\u0631_\u0648_\u0646\u0642\u0634\u0647" }, { "relation": "contains", @@ -151498,9 +151529,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "target": "prompt_clinic_detail_fixes_\u06f4_\u0644\u0648\u06af\u0648_\u0622\u067e\u0644\u0648\u062f_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_\u06f4_\u0644\u0648\u06af\u0648_\u0622\u067e\u0644\u0648\u062f_\u0646\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -151508,9 +151539,9 @@ "source_file": ".claude/prompt/clinic-detail-fixes.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_detail_fixes_clinicdetailpage_\u067e\u0646\u062c_\u0627\u0635\u0644\u0627\u062d", - "target": "prompt_clinic_detail_fixes_\u06f5_\u06af\u0627\u0644\u0631\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u062a\u0635\u0648\u06cc\u0631_\u0645\u06cc_\u06af\u06cc\u0631\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_detail_fixes_\u06f5_\u06af\u0627\u0644\u0631\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u062a\u0635\u0648\u06cc\u0631_\u0645\u06cc_\u06af\u06cc\u0631\u062f" }, { "relation": "contains", @@ -151518,9 +151549,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate", - "target": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -151528,9 +151559,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L309", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -151538,9 +151569,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L325", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647" }, { "relation": "contains", @@ -151548,9 +151579,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -151558,9 +151589,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -151568,9 +151599,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L349", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -151578,9 +151609,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u067e\u0631\u0627\u0645\u067e\u062a_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631_\u062a\u0648\u0633\u0637_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_doctor_deactivate_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0647\u062f\u0641" }, { "relation": "contains", @@ -151588,9 +151619,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_clinic_doctor_deactivate_api_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_api_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -151598,9 +151629,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_clinic_doctor_deactivate_frontend_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_frontend_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -151608,9 +151639,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_clinic_doctor_deactivate_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_clinic_owner", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_clinic_owner" }, { "relation": "contains", @@ -151618,9 +151649,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_clinic_doctor_deactivate_\u062c\u062f\u0648\u0644_clinic_doctors_join_table_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u062c\u062f\u0648\u0644_clinic_doctors_join_table_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -151628,9 +151659,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_clinic_doctor_deactivate_\u0646\u0648\u0628\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0646\u0648\u0628\u062a_\u0647\u0627" }, { "relation": "contains", @@ -151638,9 +151669,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u0633\u0647_\u062a\u063a\u06cc\u06cc\u0631_schema", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u0633\u0647_\u062a\u063a\u06cc\u06cc\u0631_schema" }, { "relation": "contains", @@ -151648,9 +151679,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_backend_endpoint_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_backend_endpoint_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -151658,9 +151689,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_\u0628_backend_\u0630\u062e\u06cc\u0631\u0647_address_id_\u0647\u0646\u06af\u0627\u0645_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_\u0628_backend_\u0630\u062e\u06cc\u0631\u0647_address_id_\u0647\u0646\u06af\u0627\u0645_\u062b\u0628\u062a_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -151668,9 +151699,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_backend_endpoint_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u0645\u062c\u062f\u062f_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_backend_endpoint_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u0645\u062c\u062f\u062f_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -151678,9 +151709,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_backend_\u0622\u067e\u062f\u06cc\u062a_endpoint_doctor_list", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_backend_\u0622\u067e\u062f\u06cc\u062a_endpoint_doctor_list" }, { "relation": "contains", @@ -151688,9 +151719,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx" }, { "relation": "contains", @@ -151698,9 +151729,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u0633\u0647_\u062a\u063a\u06cc\u06cc\u0631_schema", - "target": "prompt_clinic_doctor_deactivate_\u06f1_\u0627\u0644\u0641_\u062c\u062f\u0648\u0644_clinic_doctors", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u06f1_\u0627\u0644\u0641_\u062c\u062f\u0648\u0644_clinic_doctors" }, { "relation": "contains", @@ -151708,9 +151739,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u0633\u0647_\u062a\u063a\u06cc\u06cc\u0631_schema", - "target": "prompt_clinic_doctor_deactivate_\u06f1_\u0628_\u062c\u062f\u0648\u0644_doctor_addresses", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u06f1_\u0628_\u062c\u062f\u0648\u0644_doctor_addresses" }, { "relation": "contains", @@ -151718,9 +151749,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u0633\u0647_\u062a\u063a\u06cc\u06cc\u0631_schema", - "target": "prompt_clinic_doctor_deactivate_\u06f1_\u062c_\u062c\u062f\u0648\u0644_appointments", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u06f1_\u062c_\u062c\u062f\u0648\u0644_appointments" }, { "relation": "contains", @@ -151728,9 +151759,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_clinic_doctor_deactivate_api_calls_\u0628\u0627_usemutation", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_api_calls_\u0628\u0627_usemutation" }, { "relation": "contains", @@ -151738,9 +151769,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L301", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_clinic_doctor_deactivate_ux_\u0646\u06a9\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_ux_\u0646\u06a9\u0627\u062a" }, { "relation": "contains", @@ -151748,9 +151779,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_clinic_doctor_deactivate_\u0622\u067e\u062f\u06cc\u062a_interface", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0622\u067e\u062f\u06cc\u062a_interface" }, { "relation": "contains", @@ -151758,9 +151789,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L268", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_clinic_doctor_deactivate_\u062f\u06a9\u0645\u0647_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u062f\u06a9\u0645\u0647_\u0647\u0627" }, { "relation": "contains", @@ -151768,9 +151799,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_\u062f\u06a9\u0645\u0647_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0641\u0639\u0627\u0644_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_clinic_doctor_deactivate_\u0645\u0646\u0637\u0642_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u0645\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0645\u0646\u0637\u0642_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u0645\u0647" }, { "relation": "contains", @@ -151778,9 +151809,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L353", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_clinic_doctor_deactivate_patch_api_v1_clinic_clinicuuid_doctor_doctoruuid_deactivate", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_patch_api_v1_clinic_clinicuuid_doctor_doctoruuid_deactivate" }, { "relation": "contains", @@ -151788,9 +151819,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L354", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_clinic_doctor_deactivate_patch_api_v1_clinic_clinicuuid_doctor_doctoruuid_reactivate", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_patch_api_v1_clinic_clinicuuid_doctor_doctoruuid_reactivate" }, { "relation": "contains", @@ -151798,9 +151829,9 @@ "source_file": ".claude/prompt/clinic-doctor-deactivate.md", "source_location": "L355", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_doctor_deactivate_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_clinic_doctor_deactivate_\u0622\u067e\u062f\u06cc\u062a_get_api_v1_clinic_doctor_list_clinicuuid_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_clinic_doctor_deactivate_\u0622\u067e\u062f\u06cc\u062a_get_api_v1_clinic_doctor_list_clinicuuid_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -151808,9 +151839,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field", - "target": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic" }, { "relation": "contains", @@ -151818,9 +151849,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -151828,9 +151859,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -151838,9 +151869,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -151848,9 +151879,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -151858,9 +151889,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -151868,9 +151899,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -151878,9 +151909,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_clinic", - "target": "prompt_clinic_social_media_field_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -151888,9 +151919,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_social_media_field_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_socialmedia", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_socialmedia" }, { "relation": "contains", @@ -151898,9 +151929,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_social_media_field_\u06f2_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_\u0628\u0647_\u062e\u0631\u0648\u062c\u06cc_todetailarray_\u0648_tolistarray", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u06f2_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_\u0628\u0647_\u062e\u0631\u0648\u062c\u06cc_todetailarray_\u0648_tolistarray" }, { "relation": "contains", @@ -151908,9 +151939,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_social_media_field_\u06f3_migration", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u06f3_migration" }, { "relation": "contains", @@ -151918,9 +151949,9 @@ "source_file": ".claude/prompt/clinic-social-media-field.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_social_media_field_\u06f4_\u067e\u0630\u06cc\u0631\u0634_\u062f\u0631_cliniccontroller_update", - "confidence_score": 1.0 + "target": "prompt_clinic_social_media_field_\u06f4_\u067e\u0630\u06cc\u0631\u0634_\u062f\u0631_cliniccontroller_update" }, { "relation": "contains", @@ -151928,9 +151959,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile", - "target": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -151938,9 +151969,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -151948,9 +151979,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -151958,9 +151989,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0645\u0634\u06a9\u0644", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0645\u0634\u06a9\u0644" }, { "relation": "contains", @@ -151968,9 +151999,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -151978,9 +152009,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -151988,9 +152019,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -151998,9 +152029,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_view_doctor_profile_\u06f1_frontend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_clinic_\u0628\u0647_roleroute_\u0645\u0633\u06cc\u0631_\u067e\u0632\u0634\u06a9", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u06f1_frontend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_clinic_\u0628\u0647_roleroute_\u0645\u0633\u06cc\u0631_\u067e\u0632\u0634\u06a9" }, { "relation": "contains", @@ -152008,9 +152039,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_view_doctor_profile_\u06f2_backend_endpoint_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u06f2_backend_endpoint_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -152018,9 +152049,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_view_doctor_profile_\u06f3_frontend_doctordetailpage_fetch_\u0628\u0627_endpoint_\u0645\u0646\u0627\u0633\u0628", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u06f3_frontend_doctordetailpage_fetch_\u0628\u0627_endpoint_\u0645\u0646\u0627\u0633\u0628" }, { "relation": "contains", @@ -152028,9 +152059,9 @@ "source_file": ".claude/prompt/clinic-view-doctor-profile.md", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_clinic_view_doctor_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_clinic_view_doctor_profile_\u06f4_frontend_doctordetailpage_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0631\u0627\u06cc_clinic", - "confidence_score": 1.0 + "target": "prompt_clinic_view_doctor_profile_\u06f4_frontend_doctordetailpage_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0631\u0627\u06cc_clinic" }, { "relation": "contains", @@ -152038,9 +152069,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup", - "target": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a" }, { "relation": "contains", @@ -152048,9 +152079,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -152058,9 +152089,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -152068,9 +152099,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -152078,9 +152109,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -152088,9 +152119,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -152098,9 +152129,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -152108,9 +152139,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u062a\u0639\u0631\u06cc\u0641_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u062b\u0628\u062a_\u0646\u0627\u0645_\u0642\u0628\u0644\u06cc_\u062f\u0631_\u0633\u0627\u06cc\u062a", - "target": "prompt_create_patient_without_signup_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -152118,9 +152149,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_patient_without_signup_\u06f1_backend_endpoint_\u0633\u0627\u062e\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u06f1_backend_endpoint_\u0633\u0627\u062e\u062a_\u0628\u06cc\u0645\u0627\u0631_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -152128,9 +152159,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_patient_without_signup_\u06f2_admin_frontend_\u0645\u0648\u062f\u0627\u0644", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u06f2_admin_frontend_\u0645\u0648\u062f\u0627\u0644" }, { "relation": "contains", @@ -152138,9 +152169,9 @@ "source_file": ".claude/prompt/create-patient-without-signup.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_patient_without_signup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_patient_without_signup_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_create_patient_without_signup_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -152148,9 +152179,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks", - "target": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro" }, { "relation": "contains", @@ -152158,9 +152189,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "target": "prompt_create_phase2_tasks_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -152168,9 +152199,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -152178,9 +152209,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L568", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "target": "prompt_create_phase2_tasks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -152188,9 +152219,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "target": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -152198,9 +152229,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0641\u0627\u0632_\u06f2_clinicpro", - "target": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -152208,9 +152239,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_create_phase2_tasks_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632\u06cc_\u0628\u0647_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0646\u062f\u0627\u0631\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632\u06cc_\u0628\u0647_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0646\u062f\u0627\u0631\u0646\u062f" }, { "relation": "contains", @@ -152218,9 +152249,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_create_phase2_tasks_entities_\u0645\u0648\u062c\u0648\u062f_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_entities_\u0645\u0648\u062c\u0648\u062f_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -152228,9 +152259,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a\u0627\u0631_\u0646\u0645\u0648\u0646\u0647_task_09", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0633\u0627\u062e\u062a\u0627\u0631_\u0646\u0645\u0648\u0646\u0647_task_09" }, { "relation": "contains", @@ -152238,9 +152269,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_create_phase2_tasks_\u0645\u0633\u06cc\u0631_\u0646\u0647\u0627\u06cc\u06cc_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0645\u0633\u06cc\u0631_\u0646\u0647\u0627\u06cc\u06cc_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -152248,9 +152279,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644", - "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_controller", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_controller" }, { "relation": "contains", @@ -152258,9 +152289,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644", - "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_database_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_database_md" }, { "relation": "contains", @@ -152268,9 +152299,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644", - "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_entity_\u062f\u0631_architecture_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u0642\u0648\u0627\u0646\u06cc\u0646_entity_\u062f\u0631_architecture_md" }, { "relation": "contains", @@ -152278,9 +152309,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff" }, { "relation": "contains", @@ -152288,9 +152319,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription" }, { "relation": "contains", @@ -152298,9 +152329,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion" }, { "relation": "contains", @@ -152308,9 +152339,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L306", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services" }, { "relation": "contains", @@ -152318,9 +152349,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L358", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel" }, { "relation": "contains", @@ -152328,9 +152359,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L413", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records" }, { "relation": "contains", @@ -152338,9 +152369,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L530", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard" }, { "relation": "contains", @@ -152348,9 +152379,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff", - "target": "prompt_create_phase2_tasks_architecture_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md" }, { "relation": "contains", @@ -152358,9 +152389,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff", - "target": "prompt_create_phase2_tasks_database_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md" }, { "relation": "contains", @@ -152368,9 +152399,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff", - "target": "prompt_create_phase2_tasks_task_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md" }, { "relation": "contains", @@ -152378,9 +152409,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f1_\u0633\u0627\u062e\u062a_docs_tasks_task_10_staff", - "target": "prompt_create_phase2_tasks_user_flow_md", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md" }, { "relation": "contains", @@ -152388,9 +152419,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription", - "target": "prompt_create_phase2_tasks_architecture_md_184", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_184" }, { "relation": "contains", @@ -152398,9 +152429,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription", - "target": "prompt_create_phase2_tasks_database_md_213", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_213" }, { "relation": "contains", @@ -152408,9 +152439,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription", - "target": "prompt_create_phase2_tasks_task_md_148", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_148" }, { "relation": "contains", @@ -152418,9 +152449,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f2_\u0633\u0627\u062e\u062a_docs_tasks_task_11_subscription", - "target": "prompt_create_phase2_tasks_user_flow_md_248", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_248" }, { "relation": "contains", @@ -152428,9 +152459,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion", - "target": "prompt_create_phase2_tasks_architecture_md_291", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_291" }, { "relation": "contains", @@ -152438,9 +152469,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L296", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion", - "target": "prompt_create_phase2_tasks_database_md_296", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_296" }, { "relation": "contains", @@ -152448,9 +152479,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion", - "target": "prompt_create_phase2_tasks_task_md_258", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_258" }, { "relation": "contains", @@ -152458,9 +152489,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L300", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f3_\u0633\u0627\u062e\u062a_docs_tasks_task_12_secretary_completion", - "target": "prompt_create_phase2_tasks_user_flow_md_300", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_300" }, { "relation": "contains", @@ -152468,9 +152499,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L326", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services", - "target": "prompt_create_phase2_tasks_architecture_md_326", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_326" }, { "relation": "contains", @@ -152478,9 +152509,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services", - "target": "prompt_create_phase2_tasks_database_md_338", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_338" }, { "relation": "contains", @@ -152488,9 +152519,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services", - "target": "prompt_create_phase2_tasks_task_md_308", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_308" }, { "relation": "contains", @@ -152498,9 +152529,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f4_\u0633\u0627\u062e\u062a_docs_tasks_task_13_clinic_services", - "target": "prompt_create_phase2_tasks_user_flow_md_351", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_351" }, { "relation": "contains", @@ -152508,9 +152539,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L376", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel", - "target": "prompt_create_phase2_tasks_architecture_md_376", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_376" }, { "relation": "contains", @@ -152518,9 +152549,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L386", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel", - "target": "prompt_create_phase2_tasks_database_md_386", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_386" }, { "relation": "contains", @@ -152528,9 +152559,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L360", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel", - "target": "prompt_create_phase2_tasks_task_md_360", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_360" }, { "relation": "contains", @@ -152538,9 +152569,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L406", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f5_\u0633\u0627\u062e\u062a_docs_tasks_task_14_sms_panel", - "target": "prompt_create_phase2_tasks_user_flow_md_406", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_406" }, { "relation": "contains", @@ -152548,9 +152579,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L471", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records", - "target": "prompt_create_phase2_tasks_architecture_md_471", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_471" }, { "relation": "contains", @@ -152558,9 +152589,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L488", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records", - "target": "prompt_create_phase2_tasks_database_md_488", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_488" }, { "relation": "contains", @@ -152568,9 +152599,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records", - "target": "prompt_create_phase2_tasks_task_md_415", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_415" }, { "relation": "contains", @@ -152578,9 +152609,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L522", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f6_\u0633\u0627\u062e\u062a_docs_tasks_task_15_patient_records", - "target": "prompt_create_phase2_tasks_user_flow_md_522", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_522" }, { "relation": "contains", @@ -152588,9 +152619,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L550", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard", - "target": "prompt_create_phase2_tasks_architecture_md_550", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_architecture_md_550" }, { "relation": "contains", @@ -152598,9 +152629,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L557", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard", - "target": "prompt_create_phase2_tasks_database_md_557", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_database_md_557" }, { "relation": "contains", @@ -152608,9 +152639,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L532", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard", - "target": "prompt_create_phase2_tasks_task_md_532", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_task_md_532" }, { "relation": "contains", @@ -152618,9 +152649,9 @@ "source_file": ".claude/prompt/create-phase2-tasks.md", "source_location": "L561", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_create_phase2_tasks_\u06f7_\u0633\u0627\u062e\u062a_docs_tasks_task_16_smart_dashboard", - "target": "prompt_create_phase2_tasks_user_flow_md_561", - "confidence_score": 1.0 + "target": "prompt_create_phase2_tasks_user_flow_md_561" }, { "relation": "contains", @@ -152628,9 +152659,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability", - "target": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647" }, { "relation": "contains", @@ -152638,9 +152669,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -152648,9 +152679,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -152658,9 +152689,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -152668,9 +152699,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -152678,9 +152709,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -152688,9 +152719,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -152698,9 +152729,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u062f\u06a9\u062a\u0631_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648_booking_window_endpoint_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u0645\u0627\u0647\u0627\u0646\u0647", - "target": "prompt_doctor_booking_window_and_month_availability_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -152708,9 +152739,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_doctor_booking_window_and_month_availability_appointment_slots_controller_\u0628\u062f\u0648\u0646_\u0686\u06a9_window", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_appointment_slots_controller_\u0628\u062f\u0648\u0646_\u0686\u06a9_window" }, { "relation": "contains", @@ -152718,9 +152749,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_doctor_booking_window_and_month_availability_doctordetailpage_tsx_schedule_\u0627\u0632_\u0642\u0628\u0644_\u0630\u062e\u06cc\u0631\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_doctordetailpage_tsx_schedule_\u0627\u0632_\u0642\u0628\u0644_\u0630\u062e\u06cc\u0631\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -152728,9 +152759,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_doctor_booking_window_and_month_availability_slotcalculatorservice_buildallsessions_\u062a\u0631\u062a\u06cc\u0628_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_slotcalculatorservice_buildallsessions_\u062a\u0631\u062a\u06cc\u0628_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -152738,9 +152769,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_doctor_booking_window_and_month_availability_weeklyschedule_php_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_json", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_weeklyschedule_php_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_json" }, { "relation": "contains", @@ -152748,9 +152779,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_booking_window_and_month_availability_\u06f1_\u0645\u062f\u0644_booking_window_\u062f\u0631_weeklyschedule_setting", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u06f1_\u0645\u062f\u0644_booking_window_\u062f\u0631_weeklyschedule_setting" }, { "relation": "contains", @@ -152758,9 +152789,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_booking_window_and_month_availability_\u06f2_\u0627\u0639\u0645\u0627\u0644_window_\u062f\u0631_slotcalculatorservice", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u06f2_\u0627\u0639\u0645\u0627\u0644_window_\u062f\u0631_slotcalculatorservice" }, { "relation": "contains", @@ -152768,9 +152799,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_booking_window_and_month_availability_\u06f3_endpoint_\u0639\u0645\u0648\u0645\u06cc_month_availability", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u06f3_endpoint_\u0639\u0645\u0648\u0645\u06cc_month_availability" }, { "relation": "contains", @@ -152778,9 +152809,9 @@ "source_file": ".claude/prompt/doctor-booking-window-and-month-availability.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_booking_window_and_month_availability_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_booking_window_and_month_availability_\u06f4_ui_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_doctordetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_doctor_booking_window_and_month_availability_\u06f4_ui_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_doctordetailpage_tsx" }, { "relation": "contains", @@ -152788,9 +152819,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access", - "target": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633" }, { "relation": "contains", @@ -152798,9 +152829,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -152808,9 +152839,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -152818,9 +152849,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -152828,9 +152859,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -152838,9 +152869,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_clinicrepository", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_clinicrepository" }, { "relation": "contains", @@ -152848,9 +152879,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -152858,9 +152889,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0622\u062f\u0631\u0633", - "target": "prompt_doctor_clinic_address_access_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -152868,9 +152899,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_doctor_clinic_address_access_backend_doctoraddress_toarray_\u0641\u0627\u06cc\u0644_src_doctor_entity_doctoraddress_php_\u062e\u0637_112", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_backend_doctoraddress_toarray_\u0641\u0627\u06cc\u0644_src_doctor_entity_doctoraddress_php_\u062e\u0637_112" }, { "relation": "contains", @@ -152878,9 +152909,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_doctor_clinic_address_access_backend_listaddresses_\u062f\u0631_doctorcontroller_\u062e\u0637_671", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_backend_listaddresses_\u062f\u0631_doctorcontroller_\u062e\u0637_671" }, { "relation": "contains", @@ -152888,9 +152919,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_doctor_clinic_address_access_frontend_addrschema_\u062f\u0631_doctordetailpage_tsx_\u062e\u0637_772", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_frontend_addrschema_\u062f\u0631_doctordetailpage_tsx_\u062e\u0637_772" }, { "relation": "contains", @@ -152898,9 +152929,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_doctor_clinic_address_access_frontend_sessioneditor_\u062e\u0637_1082_1085", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_frontend_sessioneditor_\u062e\u0637_1082_1085" }, { "relation": "contains", @@ -152908,9 +152939,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_clinic_address_access_\u06f1_backend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_clinic_name_\u0628\u0647_doctoraddress_toarray", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u06f1_backend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_clinic_name_\u0628\u0647_doctoraddress_toarray" }, { "relation": "contains", @@ -152918,9 +152949,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_clinic_address_access_\u06f2_backend_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0631\u0627_\u062f\u0631_listaddresses_\u0634\u0627\u0645\u0644_\u06a9\u0646", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u06f2_backend_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u0631\u0627_\u062f\u0631_listaddresses_\u0634\u0627\u0645\u0644_\u06a9\u0646" }, { "relation": "contains", @@ -152928,9 +152959,9 @@ "source_file": ".claude/prompt/doctor-clinic-address-access.md", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_clinic_address_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_clinic_address_access_\u06f3_frontend_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627_\u062f\u0631_addrschema", - "confidence_score": 1.0 + "target": "prompt_doctor_clinic_address_access_\u06f3_frontend_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627_\u062f\u0631_addrschema" }, { "relation": "contains", @@ -152938,9 +152969,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page" }, { "relation": "contains", @@ -152948,9 +152979,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0634\u062f\u0647" }, { "relation": "contains", @@ -152958,9 +152989,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0627\u0644\u0632\u0627\u0645\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0627\u0644\u0632\u0627\u0645\u0627\u062a" }, { "relation": "contains", @@ -152968,9 +152999,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0631\u0648\u06cc\u06a9\u0631\u062f_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0631\u0648\u06cc\u06a9\u0631\u062f_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc" }, { "relation": "contains", @@ -152978,9 +153009,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u0623\u062b\u06cc\u0631\u067e\u0630\u06cc\u0631" }, { "relation": "contains", @@ -152988,9 +153019,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u062f" }, { "relation": "contains", @@ -152998,9 +153029,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -153008,9 +153039,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153018,9 +153049,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_doctor_profile_page", - "target": "prompt_doctor_profile_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0686\u0647_\u062f\u0627\u0631\u06cc\u0645", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0686\u0647_\u062f\u0627\u0631\u06cc\u0645" }, { "relation": "contains", @@ -153028,9 +153059,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0686\u0647_\u062f\u0627\u0631\u06cc\u0645", - "target": "prompt_doctor_profile_page_auth_store", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_auth_store" }, { "relation": "contains", @@ -153038,9 +153069,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0686\u0647_\u062f\u0627\u0631\u06cc\u0645", - "target": "prompt_doctor_profile_page_\u0633\u0627\u06cc\u062f\u0628\u0627\u0631_\u062f\u06a9\u062a\u0631_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0633\u0627\u06cc\u062f\u0628\u0627\u0631_\u062f\u06a9\u062a\u0631_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -153048,9 +153079,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0686\u0647_\u062f\u0627\u0631\u06cc\u0645", - "target": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0635\u0641\u062d\u0647_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -153058,9 +153089,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u062f", - "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_route_sidebar", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_route_sidebar" }, { "relation": "contains", @@ -153068,9 +153099,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u062f", - "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_doctorprofilepage_tsx", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_doctorprofilepage_tsx" }, { "relation": "contains", @@ -153078,9 +153109,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_doctor_profile_page_double_nested_response_\u0628\u0631\u0627\u06cc_get_doctor", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_double_nested_response_\u0628\u0631\u0627\u06cc_get_doctor" }, { "relation": "contains", @@ -153088,9 +153119,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_doctor_profile_page_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u062c\u062f\u062f_\u0627\u0632_doctordetailpage", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u062c\u062f\u062f_\u0627\u0632_doctordetailpage" }, { "relation": "contains", @@ -153098,9 +153129,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_doctor_profile_page_\u0628\u062e\u0634_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u062f\u06a9\u062a\u0631_\u0627\u0636\u0627\u0641\u0647_\u0645\u06cc_\u0628\u06cc\u0646\u062f_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0628\u062e\u0634_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u062f\u06a9\u062a\u0631_\u0627\u0636\u0627\u0641\u0647_\u0645\u06cc_\u0628\u06cc\u0646\u062f_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc" }, { "relation": "contains", @@ -153108,9 +153139,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_doctor_profile_page_\u0628\u062e\u0634_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646_\u0645\u06cc_\u0628\u06cc\u0646\u062f_\u0628\u0627\u06cc\u062f_\u067e\u0646\u0647\u0627\u0646_\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u0628\u062e\u0634_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646_\u0645\u06cc_\u0628\u06cc\u0646\u062f_\u0628\u0627\u06cc\u062f_\u067e\u0646\u0647\u0627\u0646_\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -153118,9 +153149,9 @@ "source_file": ".claude/prompt/doctor-profile-page.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_profile_page_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_doctor_profile_page_\u06af\u0631\u0641\u062a\u0646_uuid_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_doctor_profile_page_\u06af\u0631\u0641\u062a\u0646_uuid_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -153128,9 +153159,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field", - "target": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor" }, { "relation": "contains", @@ -153138,9 +153169,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153148,9 +153179,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153158,9 +153189,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153168,9 +153199,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153178,9 +153209,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -153188,9 +153219,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153198,9 +153229,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u0628\u0647_doctor", - "target": "prompt_doctor_social_media_field_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153208,9 +153239,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_social_media_field_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_socialmedia_\u0628\u0647_doctor_entity", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_socialmedia_\u0628\u0647_doctor_entity" }, { "relation": "contains", @@ -153218,9 +153249,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_social_media_field_\u06f2_migration", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u06f2_migration" }, { "relation": "contains", @@ -153228,9 +153259,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_social_media_field_\u06f3_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u0641\u06cc\u0644\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_api", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u06f3_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u0641\u06cc\u0644\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_api" }, { "relation": "contains", @@ -153238,9 +153269,9 @@ "source_file": ".claude/prompt/doctor-social-media-field.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_doctor_social_media_field_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_doctor_social_media_field_\u06f4_\u0641\u0631\u0645_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "prompt_doctor_social_media_field_\u06f4_\u0641\u0631\u0645_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -153248,9 +153279,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -153258,9 +153289,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153268,9 +153299,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153278,9 +153309,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153288,9 +153319,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153298,9 +153329,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -153308,9 +153339,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153318,9 +153349,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0633\u062a\u0631\u0633\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153328,9 +153359,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f1_\u0646\u0642\u0634_\u0645\u062d\u062f\u0648\u062f_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0631\u0641\u0639_\u0646\u0634\u062a\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f1_\u0646\u0642\u0634_\u0645\u062d\u062f\u0648\u062f_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0639\u0636\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0631\u0641\u0639_\u0646\u0634\u062a\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc" }, { "relation": "contains", @@ -153338,9 +153369,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f2_admin_spa_\u0645\u0646\u0648_\u0648_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u062f\u0648\u062f_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f2_admin_spa_\u0645\u0646\u0648_\u0648_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u062f\u0648\u062f_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153348,9 +153379,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f3_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u062a_\u06a9\u0631\u062f\u0646_representation_id_\u0631\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f3_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u062a_\u06a9\u0631\u062f\u0646_representation_id_\u0631\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153358,9 +153389,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f4_\u0641\u06cc\u0644\u062a\u0631_representation_\u062f\u0631_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f4_\u0641\u06cc\u0644\u062a\u0631_representation_\u062f\u0631_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0648_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627" }, { "relation": "contains", @@ -153368,9 +153399,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f5_admin_spa_\u0627\u062a\u0635\u0627\u0644_\u0644\u06cc\u0633\u062a_\u0647\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0628\u0647_endpoint_scoped", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f5_admin_spa_\u0627\u062a\u0635\u0627\u0644_\u0644\u06cc\u0633\u062a_\u0647\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0628\u0647_endpoint_scoped" }, { "relation": "contains", @@ -153378,9 +153409,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0639\u062f\u0627\u062f_\u0641\u0642\u0637_\u0627\u0632_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062e\u0648\u062f\u0634", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0639\u062f\u0627\u062f_\u0641\u0642\u0637_\u0627\u0632_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062e\u0648\u062f\u0634" }, { "relation": "contains", @@ -153388,9 +153419,9 @@ "source_file": ".claude/prompt/fix-access-scoping-doctor-clinic-representation.md", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_access_scoping_doctor_clinic_representation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_access_scoping_doctor_clinic_representation_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -153398,9 +153429,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening", - "target": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers" }, { "relation": "contains", @@ -153408,9 +153439,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153418,9 +153449,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153428,9 +153459,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153438,9 +153469,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L208", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153448,9 +153479,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -153458,9 +153489,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153468,9 +153499,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u062a\u0648\u06a9\u0646_c_1_h_1_h_4_m_1_m_3_headers", - "target": "prompt_fix_auth_token_hardening_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153478,9 +153509,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f1_grant_\u06cc\u06a9_\u0628\u0627\u0631\u0645\u0635\u0631\u0641_\u062f\u0631_otpservice_c_1", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f1_grant_\u06cc\u06a9_\u0628\u0627\u0631\u0645\u0635\u0631\u0641_\u062f\u0631_otpservice_c_1" }, { "relation": "contains", @@ -153488,9 +153519,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f2_\u0645\u0635\u0631\u0641_grant_\u062f\u0631_\u0646\u0642\u0627\u0637_\u0635\u062f\u0648\u0631_\u062a\u0648\u06a9\u0646_\u0631\u06cc\u0633\u062a_c_1_h_4", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f2_\u0645\u0635\u0631\u0641_grant_\u062f\u0631_\u0646\u0642\u0627\u0637_\u0635\u062f\u0648\u0631_\u062a\u0648\u06a9\u0646_\u0631\u06cc\u0633\u062a_c_1_h_4" }, { "relation": "contains", @@ -153498,9 +153529,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f3_rate_limit_\u0631\u0648\u06cc_\u0646\u0642\u0627\u0637_\u062d\u0633\u0627\u0633_c_1_h_4", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f3_rate_limit_\u0631\u0648\u06cc_\u0646\u0642\u0627\u0637_\u062d\u0633\u0627\u0633_c_1_h_4" }, { "relation": "contains", @@ -153508,9 +153539,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f4_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_\u0639\u0645\u0631_jwt_h_1", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f4_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_\u0639\u0645\u0631_jwt_h_1" }, { "relation": "contains", @@ -153518,9 +153549,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f5_randomize_\u0646\u0627\u0645_\u0641\u0627\u06cc\u0644_\u0622\u067e\u0644\u0648\u062f\u06cc_m_1", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f5_randomize_\u0646\u0627\u0645_\u0641\u0627\u06cc\u0644_\u0622\u067e\u0644\u0648\u062f\u06cc_m_1" }, { "relation": "contains", @@ -153528,9 +153559,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f6_\u0633\u0642\u0641_\u0633\u0631\u0627\u0633\u0631\u06cc_pagination_m_3", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f6_\u0633\u0642\u0641_\u0633\u0631\u0627\u0633\u0631\u06cc_pagination_m_3" }, { "relation": "contains", @@ -153538,9 +153569,9 @@ "source_file": ".claude/prompt/fix-auth-token-hardening.md", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_auth_token_hardening_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_auth_token_hardening_\u06f7_security_headers_\u062f\u0631_\u0633\u0637\u062d_symfony", - "confidence_score": 1.0 + "target": "prompt_fix_auth_token_hardening_\u06f7_security_headers_\u062f\u0631_\u0633\u0637\u062d_symfony" }, { "relation": "contains", @@ -153548,9 +153579,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features", - "target": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3" }, { "relation": "contains", @@ -153558,9 +153589,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3", - "target": "prompt_fix_bugs_and_features_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153568,9 +153599,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L408", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3", - "target": "prompt_fix_bugs_and_features_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153578,9 +153609,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3", - "target": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153588,9 +153619,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L436", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_phase_3", - "target": "prompt_fix_bugs_and_features_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153598,9 +153629,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f1_\u062e\u0637\u0627\u06cc_500_\u062f\u0631_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0633\u0646\u0644_national_code_10_chars", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f1_\u062e\u0637\u0627\u06cc_500_\u062f\u0631_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0633\u0646\u0644_national_code_10_chars" }, { "relation": "contains", @@ -153608,9 +153639,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f2_doctor_uuid_null_\u062f\u0631_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc_\u0627\u0632_\u067e\u0646\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f2_doctor_uuid_null_\u062f\u0631_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc_\u0627\u0632_\u067e\u0646\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153618,9 +153649,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f3_\u062f\u0631_appointmentspage_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0631\u0627\u06cc_\u0627\u0646\u062a\u062e\u0627\u0628_\u0646\u06cc\u0633\u062a_\u067e\u0646\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f3_\u062f\u0631_appointmentspage_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0631\u0627\u06cc_\u0627\u0646\u062a\u062e\u0627\u0628_\u0646\u06cc\u0633\u062a_\u067e\u0646\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153628,9 +153659,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f4_\u0645\u0646\u0634\u06cc_\u0646\u0645\u06cc_\u062a\u0648\u0627\u0646\u062f_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_\u062a\u0634\u06a9\u06cc\u0644_\u062f\u0647\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0628\u0627\u06af_\u06f4_\u0645\u0646\u0634\u06cc_\u0646\u0645\u06cc_\u062a\u0648\u0627\u0646\u062f_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_\u062a\u0634\u06a9\u06cc\u0644_\u062f\u0647\u062f" }, { "relation": "contains", @@ -153638,9 +153669,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_\u0641\u0631\u0645\u062a_\u0642\u06cc\u0645\u062a_\u0628\u0627_\u06a9\u0627\u0645\u0627_\u062f\u0631_\u0641\u0631\u0645_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_\u0641\u0631\u0645\u062a_\u0642\u06cc\u0645\u062a_\u0628\u0627_\u06a9\u0627\u0645\u0627_\u062f\u0631_\u0641\u0631\u0645_\u0647\u0627" }, { "relation": "contains", @@ -153648,9 +153679,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0632_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0632_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -153658,9 +153689,9 @@ "source_file": ".claude/prompt/fix-bugs-and-features.md", "source_location": "L314", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_bugs_and_features_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_approval_flow_\u0628\u0631\u0627\u06cc_post_visit_sms_text", - "confidence_score": 1.0 + "target": "prompt_fix_bugs_and_features_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_approval_flow_\u0628\u0631\u0627\u06cc_post_visit_sms_text" }, { "relation": "contains", @@ -153668,9 +153699,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location", - "target": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153678,9 +153709,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153688,9 +153719,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153698,9 +153729,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153708,9 +153739,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153718,9 +153749,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -153728,9 +153759,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153738,9 +153769,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0641\u06cc\u0644\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_filter_by_address_location_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153748,9 +153779,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_clinic_filter_by_address_location_\u06f1_join_\u0628\u0647_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_\u0641\u06cc\u0644\u062a\u0631_\u0631\u0648\u06cc_city_province_\u0622\u062f\u0631\u0633", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u06f1_join_\u0628\u0647_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_\u0641\u06cc\u0644\u062a\u0631_\u0631\u0648\u06cc_city_province_\u0622\u062f\u0631\u0633" }, { "relation": "contains", @@ -153758,9 +153789,9 @@ "source_file": ".claude/prompt/fix-clinic-filter-by-address-location.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_filter_by_address_location_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_clinic_filter_by_address_location_\u06f2_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_clinic_md", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_filter_by_address_location_\u06f2_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_clinic_md" }, { "relation": "contains", @@ -153768,9 +153799,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add", - "target": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153778,9 +153809,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153788,9 +153819,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153798,9 +153829,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -153808,9 +153839,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153818,9 +153849,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u06cc_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u06cc_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153828,9 +153859,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153838,9 +153869,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0628\u0627\u06af_\u0627\u0641\u0632\u0648\u062f\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0646\u06af\u0627\u0645_\u0646\u0648\u0628\u062a_\u0628\u0627_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_clinic_patient_auto_add_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153848,9 +153879,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_clinic_patient_auto_add_\u06f1_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0631\u0648\u06cc_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u06f1_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0631\u0648\u06cc_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -153858,9 +153889,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_clinic_patient_auto_add_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062a\u0623\u06cc\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062a\u0623\u06cc\u06cc\u062f" }, { "relation": "contains", @@ -153868,9 +153899,9 @@ "source_file": ".claude/prompt/fix-clinic-patient-auto-add.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_clinic_patient_auto_add_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_clinic_patient_auto_add_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_clinic_patient_auto_add_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -153878,9 +153909,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic", - "target": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -153888,9 +153919,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -153898,9 +153929,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0633\u0627\u062e\u062a\u0627\u0631_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0633\u0627\u062e\u062a\u0627\u0631_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153908,9 +153939,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -153918,9 +153949,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0645\u0634\u06a9\u0644", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0645\u0634\u06a9\u0644" }, { "relation": "contains", @@ -153928,9 +153959,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -153938,9 +153969,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -153948,9 +153979,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -153958,9 +153989,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0641\u06cc\u06a9\u0633_\u0646\u0645\u0627\u06cc\u0634_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0634\u0647\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_doctor_city_via_clinic_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -153968,9 +153999,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_city_via_clinic_\u06f1_\u06af\u0633\u062a\u0631\u0634_\u0641\u06cc\u0644\u062a\u0631_city_\u0628\u0647_clinic_city", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u06f1_\u06af\u0633\u062a\u0631\u0634_\u0641\u06cc\u0644\u062a\u0631_city_\u0628\u0647_clinic_city" }, { "relation": "contains", @@ -153978,9 +154009,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_city_via_clinic_\u06f2_\u0628\u0631\u0631\u0633\u06cc_\u0641\u06cc\u0644\u062a\u0631_state_\u0645\u0634\u0627\u0628\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u06f2_\u0628\u0631\u0631\u0633\u06cc_\u0641\u06cc\u0644\u062a\u0631_state_\u0645\u0634\u0627\u0628\u0647" }, { "relation": "contains", @@ -153988,9 +154019,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_city_via_clinic_\u06f3_import_\u0644\u0627\u0632\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u06f3_import_\u0644\u0627\u0632\u0645" }, { "relation": "contains", @@ -153998,9 +154029,9 @@ "source_file": ".claude/prompt/fix-doctor-city-via-clinic.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_city_via_clinic_\u06f4_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_city_via_clinic_\u06f4_\u062a\u0633\u062a" }, { "relation": "contains", @@ -154008,9 +154039,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields", - "target": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646" }, { "relation": "contains", @@ -154018,9 +154049,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154028,9 +154059,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154038,9 +154069,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154048,9 +154079,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L241", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154058,9 +154089,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -154068,9 +154099,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_free_turn_\u0648_hours_of_work_\u062f\u0631_api_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646", - "target": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154078,9 +154109,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_doctor_schedule_fields_doctor_php_todetailarray_\u062e\u0637_\u06f1\u06f9\u06f8", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_doctor_php_todetailarray_\u062e\u0637_\u06f1\u06f9\u06f8" }, { "relation": "contains", @@ -154088,9 +154119,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_doctor_schedule_fields_doctor_php_tolistarray_\u062e\u0637_\u06f1\u06f7\u06f8", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_doctor_php_tolistarray_\u062e\u0637_\u06f1\u06f7\u06f8" }, { "relation": "contains", @@ -154098,9 +154129,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_doctor_schedule_fields_doctorrepository_findwithfilters_join_\u0646\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_doctorrepository_findwithfilters_join_\u0646\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -154108,9 +154139,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_doctor_schedule_fields_\u0633\u0627\u062e\u062a\u0627\u0631_setting_\u062f\u0631_weekly_schedules", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u0633\u0627\u062e\u062a\u0627\u0631_setting_\u062f\u0631_weekly_schedules" }, { "relation": "contains", @@ -154118,9 +154149,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f1_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_\u0645\u062a\u062f_\u06a9\u0645\u06a9\u06cc_\u0628\u0647_doctor_entity", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f1_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_\u0645\u062a\u062f_\u06a9\u0645\u06a9\u06cc_\u0628\u0647_doctor_entity" }, { "relation": "contains", @@ -154128,9 +154159,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f2_\u0622\u067e\u062f\u06cc\u062a_tolistarray_\u0648_todetailarray", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f2_\u0622\u067e\u062f\u06cc\u062a_tolistarray_\u0648_todetailarray" }, { "relation": "contains", @@ -154138,9 +154169,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f3_\u0622\u067e\u062f\u06cc\u062a_doctorrepository_findwithfilters", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f3_\u0622\u067e\u062f\u06cc\u062a_doctorrepository_findwithfilters" }, { "relation": "contains", @@ -154148,9 +154179,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f4_\u0622\u067e\u062f\u06cc\u062a_doctorcontroller_\u0645\u062a\u062f_list", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f4_\u0622\u067e\u062f\u06cc\u062a_doctorcontroller_\u0645\u062a\u062f_list" }, { "relation": "contains", @@ -154158,9 +154189,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f5_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_findbydoctors_\u0628\u0647_weeklyschedulerepository", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f5_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_findbydoctors_\u0628\u0647_weeklyschedulerepository" }, { "relation": "contains", @@ -154168,9 +154199,9 @@ "source_file": ".claude/prompt/fix-doctor-schedule-fields.md", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_schedule_fields_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_schedule_fields_\u06f6_\u0622\u067e\u062f\u06cc\u062a_\u0645\u062a\u062f\u0647\u0627\u06cc_show_\u062f\u0631_doctorcontroller", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_schedule_fields_\u06f6_\u0622\u067e\u062f\u06cc\u062a_\u0645\u062a\u062f\u0647\u0627\u06cc_show_\u062f\u0631_doctorcontroller" }, { "relation": "contains", @@ -154178,9 +154209,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance", - "target": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic" }, { "relation": "contains", @@ -154188,9 +154219,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154198,9 +154229,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154208,9 +154239,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154218,9 +154249,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154228,9 +154259,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -154238,9 +154269,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154248,9 +154279,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0631\u0641\u0639_\u0627\u0641\u062a_\u0634\u062f\u06cc\u062f_\u0633\u0631\u0639\u062a_\u0633\u0631\u0686_\u067e\u0632\u0634\u06a9_regression_\u06a9\u0627\u0645\u06cc\u062a_city_via_clinic", - "target": "prompt_fix_doctor_search_performance_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -154258,9 +154289,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_search_performance_\u06f1_\u062d\u0630\u0641_join_\u06af\u0631\u0627\u0646_d_member_of_cl_doctors_\u0648_\u0641\u06cc\u0644\u062a\u0631\u06a9\u0631\u062f\u0646_\u0645\u06a9\u0627\u0646_\u0628\u0627_subquery_\u0634\u0631\u0637\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u06f1_\u062d\u0630\u0641_join_\u06af\u0631\u0627\u0646_d_member_of_cl_doctors_\u0648_\u0641\u06cc\u0644\u062a\u0631\u06a9\u0631\u062f\u0646_\u0645\u06a9\u0627\u0646_\u0628\u0627_subquery_\u0634\u0631\u0637\u06cc" }, { "relation": "contains", @@ -154268,9 +154299,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_search_performance_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0627\u06cc\u0646\u06a9\u0647_\u06a9\u0648\u0626\u0631\u06cc_\u0628\u062f\u0648\u0646_\u0641\u06cc\u0644\u062a\u0631_\u0645\u06a9\u0627\u0646_\u062f\u0633\u062a_\u0646\u062e\u0648\u0631\u062f\u0647_\u0628\u0645\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0627\u06cc\u0646\u06a9\u0647_\u06a9\u0648\u0626\u0631\u06cc_\u0628\u062f\u0648\u0646_\u0641\u06cc\u0644\u062a\u0631_\u0645\u06a9\u0627\u0646_\u062f\u0633\u062a_\u0646\u062e\u0648\u0631\u062f\u0647_\u0628\u0645\u0627\u0646\u062f" }, { "relation": "contains", @@ -154278,9 +154309,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_search_performance_\u06f3_\u0627\u0646\u062f\u0627\u0632\u0647_\u06af\u06cc\u0631\u06cc_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0647\u0628\u0648\u062f_\u0633\u0631\u0639\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u06f3_\u0627\u0646\u062f\u0627\u0632\u0647_\u06af\u06cc\u0631\u06cc_\u0648_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0647\u0628\u0648\u062f_\u0633\u0631\u0639\u062a" }, { "relation": "contains", @@ -154288,9 +154319,9 @@ "source_file": ".claude/prompt/fix-doctor-search-performance.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_doctor_search_performance_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_doctor_search_performance_\u06f4_\u0628\u0631\u0631\u0633\u06cc_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633", - "confidence_score": 1.0 + "target": "prompt_fix_doctor_search_performance_\u06f4_\u0628\u0631\u0631\u0633\u06cc_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633" }, { "relation": "contains", @@ -154298,9 +154329,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -154308,9 +154339,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154318,9 +154349,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154328,9 +154359,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154338,9 +154369,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154348,9 +154379,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -154358,9 +154389,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154368,9 +154399,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0633\u062a\u0631\u0633\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646_\u062f\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -154378,9 +154409,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_scope_\u062f\u0631_authstore", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_scope_\u062f\u0631_authstore" }, { "relation": "contains", @@ -154388,9 +154419,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f2_\u0645\u062d\u062f\u0648\u062f\u06a9\u0631\u062f\u0646_\u0645\u0646\u0648\u06cc_sidebar_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f2_\u0645\u062d\u062f\u0648\u062f\u06a9\u0631\u062f\u0646_\u0645\u0646\u0648\u06cc_sidebar_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0645\u0647\u0645\u0627\u0646" }, { "relation": "contains", @@ -154398,9 +154429,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f3_\u06af\u0627\u0631\u062f_roleroute_\u062f\u0631_spa_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_\u0645\u0647\u0645\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f3_\u06af\u0627\u0631\u062f_roleroute_\u062f\u0631_spa_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_\u0645\u0647\u0645\u0627\u0646" }, { "relation": "contains", @@ -154408,9 +154439,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f4_\u06af\u0627\u0631\u062f_backend_defense_in_depth", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f4_\u06af\u0627\u0631\u062f_backend_defense_in_depth" }, { "relation": "contains", @@ -154418,9 +154449,9 @@ "source_file": ".claude/prompt/fix-guest-doctor-clinic-context-access.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_guest_doctor_clinic_context_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_guest_doctor_clinic_context_access_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -154428,9 +154459,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept", - "target": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -154438,9 +154469,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0631\u06cc\u0634\u0647_\u0628\u0627\u06af", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0631\u06cc\u0634\u0647_\u0628\u0627\u06af" }, { "relation": "contains", @@ -154448,9 +154479,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154458,9 +154489,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0645\u0634\u06a9\u0644", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0645\u0634\u06a9\u0644" }, { "relation": "contains", @@ -154468,9 +154499,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154478,9 +154509,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -154488,9 +154519,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_fix_\u067e\u0630\u06cc\u0631\u0641\u062a\u0646_\u062f\u0639\u0648\u062a\u0646\u0627\u0645\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0632\u0634\u06a9_\u0631\u0627_\u0628\u0647_clinic_doctors_\u0627\u0636\u0627\u0641\u0647_\u0646\u0645\u06cc_\u06a9\u0646\u062f", - "target": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154498,9 +154529,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_invitation_accept_\u06f1_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0631_clinicinvitationservice_accept", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u06f1_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062f\u0631_clinicinvitationservice_accept" }, { "relation": "contains", @@ -154508,9 +154539,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_invitation_accept_\u06f2_\u0628\u0631\u0631\u0633\u06cc_\u062d\u0627\u0644\u062a_\u0644\u0628\u0647_\u0627\u06cc_\u067e\u0632\u0634\u06a9_null_\u0627\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u06f2_\u0628\u0631\u0631\u0633\u06cc_\u062d\u0627\u0644\u062a_\u0644\u0628\u0647_\u0627\u06cc_\u067e\u0632\u0634\u06a9_null_\u0627\u0633\u062a" }, { "relation": "contains", @@ -154518,9 +154549,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_invitation_accept_\u06f3_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u06f3_\u062a\u0633\u062a" }, { "relation": "contains", @@ -154528,9 +154559,9 @@ "source_file": ".claude/prompt/fix-invitation-accept.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_invitation_accept_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_invitation_accept_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_fix_invitation_accept_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -154538,9 +154569,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context", - "target": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -154548,9 +154579,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154558,9 +154589,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154568,9 +154599,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154578,9 +154609,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154588,9 +154619,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -154598,9 +154629,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0631\u0641\u0639_\u0628\u0627\u06af_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u06a9\u062a\u0631_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_doctor_uuid_\u0628\u0627_clinic_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_profile_in_clinic_context_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154608,9 +154639,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_profile_in_clinic_context_backend_buildavailablecontexts_\u062e\u0637_614_661", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_backend_buildavailablecontexts_\u062e\u0637_614_661" }, { "relation": "contains", @@ -154618,9 +154649,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_profile_in_clinic_context_backend_userinfo_response_\u062e\u0637_536_548", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_backend_userinfo_response_\u062e\u0637_536_548" }, { "relation": "contains", @@ -154628,9 +154659,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_profile_in_clinic_context_frontend_authstore_ts_\u062e\u0637_19_94_95", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_frontend_authstore_ts_\u062e\u0637_19_94_95" }, { "relation": "contains", @@ -154638,9 +154669,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_profile_in_clinic_context_frontend_doctordetailpage_tsx_\u062e\u0637_2162", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_frontend_doctordetailpage_tsx_\u062e\u0637_2162" }, { "relation": "contains", @@ -154648,9 +154679,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_profile_in_clinic_context_\u06f1_backend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_doctor_uuid_\u0628\u0647_response_\u0647\u0627\u06cc_auth", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u06f1_backend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_doctor_uuid_\u0628\u0647_response_\u0647\u0627\u06cc_auth" }, { "relation": "contains", @@ -154658,9 +154689,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_profile_in_clinic_context_\u06f2_frontend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_doctoruuid_\u0628\u0647_authstore", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u06f2_frontend_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_doctoruuid_\u0628\u0647_authstore" }, { "relation": "contains", @@ -154668,9 +154699,9 @@ "source_file": ".claude/prompt/fix-profile-in-clinic-context.md", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_profile_in_clinic_context_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_profile_in_clinic_context_\u06f3_frontend_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_doctoruuid_\u062f\u0631_doctordetailpage", - "confidence_score": 1.0 + "target": "prompt_fix_profile_in_clinic_context_\u06f3_frontend_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_doctoruuid_\u062f\u0631_doctordetailpage" }, { "relation": "contains", @@ -154678,9 +154709,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3" }, { "relation": "contains", @@ -154688,9 +154719,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154698,9 +154729,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154708,9 +154739,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154718,9 +154749,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154728,9 +154759,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -154738,9 +154769,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154748,9 +154779,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0648_\u06a9\u062f_\u0645\u0644\u06cc_bug_2_\u0648_bug_3", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -154758,9 +154789,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u0645\u0634\u062a\u0631\u06a9_inputvalidator", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u0645\u0634\u062a\u0631\u06a9_inputvalidator" }, { "relation": "contains", @@ -154768,9 +154799,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f2_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u0633\u0627\u062e\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_bug_3", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f2_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u0633\u0627\u062e\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_bug_3" }, { "relation": "contains", @@ -154778,9 +154809,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f3_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u0633\u0627\u06cc\u0631_\u0646\u0642\u0627\u0637_\u0633\u0627\u062e\u062a_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_\u0645\u0648\u0628\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f3_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u0633\u0627\u06cc\u0631_\u0646\u0642\u0627\u0637_\u0633\u0627\u062e\u062a_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_\u0645\u0648\u0628\u0627\u06cc\u0644" }, { "relation": "contains", @@ -154788,9 +154819,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f4_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u06a9\u062f_\u0645\u0644\u06cc_bug_2", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f4_\u0627\u0639\u0645\u0627\u0644_\u062f\u0631_\u06a9\u062f_\u0645\u0644\u06cc_bug_2" }, { "relation": "contains", @@ -154798,9 +154829,9 @@ "source_file": ".claude/prompt/fix-server-side-mobile-nationalcode-validation.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_server_side_mobile_nationalcode_validation_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_server_side_mobile_nationalcode_validation_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -154808,9 +154839,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role", - "target": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -154818,9 +154849,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154828,9 +154859,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -154838,9 +154869,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -154848,9 +154879,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -154858,9 +154889,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -154868,9 +154899,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0631\u0641\u0639_\u0628\u0627\u06af_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_primaryrole_\u0622\u067e\u062f\u06cc\u062a_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "target": "prompt_fix_switch_context_role_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -154878,9 +154909,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_switch_context_role_backend_switchcontext_response_\u062e\u0637_595_599", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_backend_switchcontext_response_\u062e\u0637_595_599" }, { "relation": "contains", @@ -154888,9 +154919,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_switch_context_role_frontend_doctordetailpage_\u062e\u0637_2162", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_frontend_doctordetailpage_\u062e\u0637_2162" }, { "relation": "contains", @@ -154898,9 +154929,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_fix_switch_context_role_frontend_switchcontext_\u062f\u0631_authstore_\u062e\u0637_105_117", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_frontend_switchcontext_\u062f\u0631_authstore_\u062e\u0637_105_117" }, { "relation": "contains", @@ -154908,9 +154939,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_switch_context_role_\u06f1_frontend_\u0622\u067e\u062f\u06cc\u062a_primaryrole_\u062f\u0631_switchcontext", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u06f1_frontend_\u0622\u067e\u062f\u06cc\u062a_primaryrole_\u062f\u0631_switchcontext" }, { "relation": "contains", @@ -154918,9 +154949,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_switch_context_role_\u06f2_backend_\u0628\u0631\u0631\u0633\u06cc_role_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u06f2_backend_\u0628\u0631\u0631\u0633\u06cc_role_\u062f\u0631_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627\u06cc_\u0639\u0636\u0648_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -154928,9 +154959,9 @@ "source_file": ".claude/prompt/fix-switch-context-role.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_fix_switch_context_role_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_fix_switch_context_role_\u06f3_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_admin_profile_\u0628\u0631\u0627\u06cc_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_fix_switch_context_role_\u06f3_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_admin_profile_\u0628\u0631\u0627\u06cc_context_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -154938,9 +154969,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend", - "target": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9" }, { "relation": "contains", @@ -154948,9 +154979,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "target": "prompt_implement_phase2_backend_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u0647\u0627_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u0647\u0627_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc" }, { "relation": "contains", @@ -154958,9 +154989,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "target": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627" }, { "relation": "contains", @@ -154968,9 +154999,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "target": "prompt_implement_phase2_backend_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -154978,9 +155009,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "target": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -154988,9 +155019,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L545", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0627\u0632_\u06f2_backend_\u062a\u0633\u06a9_\u0628\u0647_\u062a\u0633\u06a9", - "target": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627" }, { "relation": "contains", @@ -154998,9 +155029,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_appointmentcontroller_updatestatus_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_appointmentcontroller_updatestatus_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -155008,9 +155039,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_backend_symfony_7", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_backend_symfony_7" }, { "relation": "contains", @@ -155018,9 +155049,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_payment_entity_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_payment_entity_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -155028,9 +155059,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_secretarycontroller_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_secretarycontroller_\u0648\u0636\u0639\u06cc\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -155038,9 +155069,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_smsservice_signature_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smsservice_signature_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -155048,9 +155079,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_\u062a\u0648\u062c\u0647_\u0645\u0647\u0645_basecontroller_success_double_nested", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u0648\u062c\u0647_\u0645\u0647\u0645_basecontroller_success_double_nested" }, { "relation": "contains", @@ -155058,9 +155089,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "prompt_implement_phase2_backend_\u0633\u0627\u062e\u062a\u0627\u0631_entity_\u0627\u0644\u06af\u0648", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0633\u0627\u062e\u062a\u0627\u0631_entity_\u0627\u0644\u06af\u0648" }, { "relation": "contains", @@ -155068,9 +155099,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -155078,9 +155109,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers" }, { "relation": "contains", @@ -155088,9 +155119,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L256", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644" }, { "relation": "contains", @@ -155098,9 +155129,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L287", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services" }, { "relation": "contains", @@ -155108,9 +155139,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel" }, { "relation": "contains", @@ -155118,9 +155149,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L416", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records" }, { "relation": "contains", @@ -155128,9 +155159,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L499", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard" }, { "relation": "contains", @@ -155138,9 +155169,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_backend_controller_endpoints", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_controller_endpoints" }, { "relation": "contains", @@ -155148,9 +155179,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_backend_entity_clinicstaff", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_entity_clinicstaff" }, { "relation": "contains", @@ -155158,9 +155189,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -155168,9 +155199,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a" }, { "relation": "contains", @@ -155178,9 +155209,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_clinicsubscription_id_uuid_entitytype_entityid_plan_fk", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_clinicsubscription_id_uuid_entitytype_entityid_plan_fk" }, { "relation": "contains", @@ -155188,9 +155219,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f_\u062f\u0631_errorcodes_php", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f_\u062f\u0631_errorcodes_php" }, { "relation": "contains", @@ -155198,9 +155229,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_seed_data_\u062f\u0631_migration", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_seed_data_\u062f\u0631_migration" }, { "relation": "contains", @@ -155208,9 +155239,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L219", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_subscriptioncontroller_endpoints", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_subscriptioncontroller_endpoints" }, { "relation": "contains", @@ -155218,9 +155249,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_subscriptionperiod_id_uuid_plan_fk_subscriptionplan_label_varchar_50", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_subscriptionperiod_id_uuid_plan_fk_subscriptionplan_label_varchar_50" }, { "relation": "contains", @@ -155228,9 +155259,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_subscriptionplan_id_uuid_name_varchar_30_free_basic_professional_level_tinyint", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_subscriptionplan_id_uuid_name_varchar_30_free_basic_professional_level_tinyint" }, { "relation": "contains", @@ -155238,9 +155269,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_subscriptionservice_\u0645\u062a\u062f\u0647\u0627\u06cc_\u0627\u0644\u0632\u0627\u0645\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_subscriptionservice_\u0645\u062a\u062f\u0647\u0627\u06cc_\u0627\u0644\u0632\u0627\u0645\u06cc" }, { "relation": "contains", @@ -155248,9 +155279,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L233", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_paymentcontroller", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_paymentcontroller" }, { "relation": "contains", @@ -155258,9 +155289,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_168", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_168" }, { "relation": "contains", @@ -155268,9 +155299,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L280", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644", - "target": "prompt_implement_phase2_backend_error_code_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_error_code_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -155278,9 +155309,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_secretarycontroller_create", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_secretarycontroller_create" }, { "relation": "contains", @@ -155288,9 +155319,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647_\u0647\u06cc\u0686_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f\u06cc_\u0646\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647_\u0647\u06cc\u0686_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f\u06cc_\u0646\u06cc\u0633\u062a" }, { "relation": "contains", @@ -155298,9 +155329,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_12_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644", - "target": "prompt_implement_phase2_backend_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645_\u0645\u062a\u062f_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645_\u0645\u062a\u062f_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -155308,9 +155339,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_controller_endpoints_308", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_controller_endpoints_308" }, { "relation": "contains", @@ -155318,9 +155349,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -155328,9 +155359,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L320", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_gate_check_helper", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_gate_check_helper" }, { "relation": "contains", @@ -155338,9 +155369,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L304", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_serviceitem_id_uuid_section_fk_servicesection_on_delete_cascade", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_serviceitem_id_uuid_section_fk_servicesection_on_delete_cascade" }, { "relation": "contains", @@ -155348,9 +155379,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L301", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_servicesection_id_uuid_entitytype_entityid_name_varchar_200_active_bool_true_createdat_updatedat", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_servicesection_id_uuid_entitytype_entityid_name_varchar_200_active_bool_true_createdat_updatedat" }, { "relation": "contains", @@ -155358,9 +155389,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_\u062d\u0630\u0641_serviceitem_\u0628\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062d\u0630\u0641_serviceitem_\u0628\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647" }, { "relation": "contains", @@ -155368,9 +155399,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_291", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_291" }, { "relation": "contains", @@ -155378,9 +155409,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L409", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_siteconfig_key", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_siteconfig_key" }, { "relation": "contains", @@ -155388,9 +155419,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L379", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_smssettings_id_entitytype_entityid_reminderenabled_bool_false", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smssettings_id_entitytype_entityid_reminderenabled_bool_false" }, { "relation": "contains", @@ -155398,9 +155429,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L372", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_smswallet_id_entitytype_entityid_balancerials_int_0_createdat_updatedat", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smswallet_id_entitytype_entityid_balancerials_int_0_createdat_updatedat" }, { "relation": "contains", @@ -155408,9 +155439,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L391", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_smswalletcontroller_endpoints", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smswalletcontroller_endpoints" }, { "relation": "contains", @@ -155418,9 +155449,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_smswalletservice", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smswalletservice" }, { "relation": "contains", @@ -155428,9 +155459,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L375", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_smswallettransaction_id_uuid_wallet_fk_smswallet_on_delete_cascade", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_smswallettransaction_id_uuid_wallet_fk_smswallet_on_delete_cascade" }, { "relation": "contains", @@ -155438,9 +155469,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_paymentcontroller_callback_\u0628\u0631\u0627\u06cc_sms_wallet", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_paymentcontroller_callback_\u0628\u0631\u0627\u06cc_sms_wallet" }, { "relation": "contains", @@ -155448,9 +155479,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647" }, { "relation": "contains", @@ -155458,9 +155489,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L355", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_355", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_355" }, { "relation": "contains", @@ -155468,9 +155499,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L489", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f_489", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_error_codes_\u062c\u062f\u06cc\u062f_489" }, { "relation": "contains", @@ -155478,9 +155509,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L473", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_patientcontroller_endpoints", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientcontroller_endpoints" }, { "relation": "contains", @@ -155488,9 +155519,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L435", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_patientrecord_id_uuid_entitytype_entityid_user_fk_user_on_delete_restrict", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientrecord_id_uuid_entitytype_entityid_user_fk_user_on_delete_restrict" }, { "relation": "contains", @@ -155498,9 +155529,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L450", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_patientservice", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientservice" }, { "relation": "contains", @@ -155508,9 +155539,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_patientsession_id_uuid_record_fk_patientrecord_cascade_appointment_fk_nullable_set_null", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientsession_id_uuid_record_fk_patientrecord_cascade_appointment_fk_nullable_set_null" }, { "relation": "contains", @@ -155518,9 +155549,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L446", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_sessionservice_entity_id_uuid_session_fk_patientsession_cascade", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_sessionservice_entity_id_uuid_session_fk_patientsession_cascade" }, { "relation": "contains", @@ -155528,9 +155559,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L483", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_appointmentcontroller_updatestatus", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_appointmentcontroller_updatestatus" }, { "relation": "contains", @@ -155538,9 +155569,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L432", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647" }, { "relation": "contains", @@ -155548,9 +155579,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L420", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_420", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_420" }, { "relation": "contains", @@ -155558,9 +155589,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prompt_implement_phase2_backend_patientrecordrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientrecordrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -155568,9 +155599,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L535", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prompt_implement_phase2_backend_patientsessionrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_patientsessionrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -155578,9 +155609,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L519", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_adminapicontroller_dashboardcharts", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_adminapicontroller_dashboardcharts" }, { "relation": "contains", @@ -155588,9 +155619,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_dashboardcontroller_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_from_to", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u063a\u06cc\u06cc\u0631_dashboardcontroller_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_from_to" }, { "relation": "contains", @@ -155598,9 +155629,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L503", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647_\u0647\u06cc\u0686_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f\u06cc_\u0646\u06cc\u0633\u062a_503", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u06a9\u0646\u0646\u062f\u0647_\u0647\u06cc\u0686_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f\u06cc_\u0646\u06cc\u0633\u062a_503" }, { "relation": "contains", @@ -155608,9 +155639,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L557", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_migration_\u0628\u0639\u062f_\u0627\u0632_\u0647\u0631_\u062a\u0633\u06a9", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_migration_\u0628\u0639\u062f_\u0627\u0632_\u0647\u0631_\u062a\u0633\u06a9" }, { "relation": "contains", @@ -155618,9 +155649,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L547", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_resolveentityfromjwt_helper_\u0645\u0634\u062a\u0631\u06a9", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_resolveentityfromjwt_helper_\u0645\u0634\u062a\u0631\u06a9" }, { "relation": "contains", @@ -155628,9 +155659,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L564", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_\u0628\u0631\u0631\u0633\u06cc_route_\u0628\u0639\u062f_\u0627\u0632_\u0647\u0631_\u062a\u0633\u06a9", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u0628\u0631\u0631\u0633\u06cc_route_\u0628\u0639\u062f_\u0627\u0632_\u0647\u0631_\u062a\u0633\u06a9" }, { "relation": "contains", @@ -155638,9 +155669,9 @@ "source_file": ".claude/prompt/implement-phase2-backend.md", "source_location": "L569", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_backend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u062a\u0633\u06a9_\u0647\u0627", - "target": "prompt_implement_phase2_backend_\u062a\u0631\u062a\u06cc\u0628_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_backend_\u062a\u0631\u062a\u06cc\u0628_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api" }, { "relation": "contains", @@ -155648,9 +155679,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend", - "target": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16" }, { "relation": "contains", @@ -155658,9 +155689,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -155668,9 +155699,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription" }, { "relation": "contains", @@ -155678,9 +155709,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_12_\u062a\u06a9\u0645\u06cc\u0644_permissions_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_12_\u062a\u06a9\u0645\u06cc\u0644_permissions_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -155688,9 +155719,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -155698,9 +155729,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L449", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc" }, { "relation": "contains", @@ -155708,9 +155739,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L578", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -155718,9 +155749,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L740", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc" }, { "relation": "contains", @@ -155728,9 +155759,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L909", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627_\u0648_\u0686\u06a9_\u0644\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627_\u0648_\u0686\u06a9_\u0644\u06cc\u0633\u062a" }, { "relation": "contains", @@ -155738,9 +155769,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -155748,9 +155779,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L930", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062c\u0639_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062c\u0639_\u0645\u0647\u0645" }, { "relation": "contains", @@ -155758,9 +155789,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L921", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -155768,9 +155799,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0641\u0627\u0632_\u06f2_task_10_\u062a\u0627_task_16", - "target": "prompt_implement_phase2_frontend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062b\u0627\u0628\u062a_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062b\u0627\u0628\u062a_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -155778,9 +155809,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_frontend_api", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_api" }, { "relation": "contains", @@ -155788,9 +155819,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_frontend_route_\u0648_sidebar", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_route_\u0648_sidebar" }, { "relation": "contains", @@ -155798,9 +155829,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -155808,9 +155839,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a" }, { "relation": "contains", @@ -155818,9 +155849,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription", - "target": "prompt_implement_phase2_frontend_api_123", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_api_123" }, { "relation": "contains", @@ -155828,9 +155859,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription", - "target": "prompt_implement_phase2_frontend_route", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_route" }, { "relation": "contains", @@ -155838,9 +155869,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_186", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_186" }, { "relation": "contains", @@ -155848,9 +155879,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_11_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_245", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_245" }, { "relation": "contains", @@ -155858,9 +155889,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_12_\u062a\u06a9\u0645\u06cc\u0644_permissions_\u0645\u0646\u0634\u06cc", - "target": "prompt_implement_phase2_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_secretariespage_tsx", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_secretariespage_tsx" }, { "relation": "contains", @@ -155868,9 +155899,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L334", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_12_\u062a\u06a9\u0645\u06cc\u0644_permissions_\u0645\u0646\u0634\u06cc", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_334", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_334" }, { "relation": "contains", @@ -155878,9 +155909,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L344", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_implement_phase2_frontend_api_344", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_api_344" }, { "relation": "contains", @@ -155888,9 +155919,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L428", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_implement_phase2_frontend_route_428", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_route_428" }, { "relation": "contains", @@ -155898,9 +155929,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L384", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_384", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_384" }, { "relation": "contains", @@ -155908,9 +155939,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L441", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_13_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_441", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_441" }, { "relation": "contains", @@ -155918,9 +155949,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L451", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "prompt_implement_phase2_frontend_api_451", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_api_451" }, { "relation": "contains", @@ -155928,9 +155959,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L557", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "prompt_implement_phase2_frontend_route_557", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_route_557" }, { "relation": "contains", @@ -155938,9 +155969,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L513", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_513", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_513" }, { "relation": "contains", @@ -155948,9 +155979,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L570", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_14_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_570", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_570" }, { "relation": "contains", @@ -155958,9 +155989,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L580", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_implement_phase2_frontend_api_580", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_api_580" }, { "relation": "contains", @@ -155968,9 +155999,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L718", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_implement_phase2_frontend_route_718", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_route_718" }, { "relation": "contains", @@ -155978,9 +156009,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L648", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631" }, { "relation": "contains", @@ -155988,9 +156019,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L732", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_15_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_732", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_732" }, { "relation": "contains", @@ -155998,9 +156029,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L742", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "prompt_implement_phase2_frontend_\u062a\u063a\u06cc\u06cc\u0631_api", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u062a\u063a\u06cc\u06cc\u0631_api" }, { "relation": "contains", @@ -156008,9 +156039,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L785", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "prompt_implement_phase2_frontend_\u062a\u063a\u06cc\u06cc\u0631_assets_admin_pages_dashboardpage_tsx", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u062a\u063a\u06cc\u06cc\u0631_assets_admin_pages_dashboardpage_tsx" }, { "relation": "contains", @@ -156018,9 +156049,9 @@ "source_file": ".claude/prompt/implement-phase2-frontend.md", "source_location": "L901", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_implement_phase2_frontend_task_16_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_901", - "confidence_score": 1.0 + "target": "prompt_implement_phase2_frontend_\u06a9\u0627\u0645\u06cc\u062a_901" }, { "relation": "contains", @@ -156028,9 +156059,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating", - "target": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc" }, { "relation": "contains", @@ -156038,9 +156069,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -156048,9 +156079,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -156058,9 +156089,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -156068,9 +156099,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -156078,9 +156109,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -156088,9 +156119,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -156098,9 +156129,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u0635\u0641\u062d\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u0647_\u062e\u0631\u06cc\u062f_\u067e\u0644\u0646_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -156108,9 +156139,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pages_subscription_gating_adminsubscriptionpage_feature\u0647\u0627\u06cc_\u0647\u0627\u0631\u062f\u06a9\u062f_\u0641\u0642\u0637_\u06f3_\u062a\u0627", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_adminsubscriptionpage_feature\u0647\u0627\u06cc_\u0647\u0627\u0631\u062f\u06a9\u062f_\u0641\u0642\u0637_\u06f3_\u062a\u0627" }, { "relation": "contains", @@ -156118,9 +156149,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pages_subscription_gating_sidebar_\u0644\u06cc\u0646\u06a9_\u0647\u0627_\u0628\u062f\u0648\u0646_feature", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_sidebar_\u0644\u06cc\u0646\u06a9_\u0647\u0627_\u0628\u062f\u0648\u0646_feature" }, { "relation": "contains", @@ -156128,9 +156159,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0627\u0644\u06af\u0648\u06cc_\u062f\u0631\u0633\u062a_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u062a\u0642\u0644\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0627\u0644\u06af\u0648\u06cc_\u062f\u0631\u0633\u062a_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u062a\u0642\u0644\u06cc\u062f" }, { "relation": "contains", @@ -156138,9 +156169,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pages_subscription_gating_\u0635\u0641\u062d\u0627\u062a_\u0645\u062d\u0627\u0641\u0638\u062a_\u0646\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u0635\u0641\u062d\u0627\u062a_\u0645\u062d\u0627\u0641\u0638\u062a_\u0646\u0634\u062f\u0647" }, { "relation": "contains", @@ -156148,9 +156179,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pages_subscription_gating_\u06f1_\u067e\u06cc\u0686\u06cc\u062f\u0646_\u062f\u0648_\u0635\u0641\u062d\u0647_\u062f\u0631_featuregate", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u06f1_\u067e\u06cc\u0686\u06cc\u062f\u0646_\u062f\u0648_\u0635\u0641\u062d\u0647_\u062f\u0631_featuregate" }, { "relation": "contains", @@ -156158,9 +156189,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pages_subscription_gating_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_feature_\u0628\u0647_\u0644\u06cc\u0646\u06a9_\u0647\u0627\u06cc_sidebar", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_feature_\u0628\u0647_\u0644\u06cc\u0646\u06a9_\u0647\u0627\u06cc_sidebar" }, { "relation": "contains", @@ -156168,9 +156199,9 @@ "source_file": ".claude/prompt/insurance-pages-subscription-gating.md", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pages_subscription_gating_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pages_subscription_gating_\u06f3_\u0627\u0641\u0632\u0648\u062f\u0646_insurance_\u0628\u0647_ui_\u0627\u062f\u0645\u06cc\u0646_\u067e\u0644\u0646", - "confidence_score": 1.0 + "target": "prompt_insurance_pages_subscription_gating_\u06f3_\u0627\u0641\u0632\u0648\u062f\u0646_insurance_\u0628\u0647_ui_\u0627\u062f\u0645\u06cc\u0646_\u067e\u0644\u0646" }, { "relation": "contains", @@ -156178,9 +156209,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647" }, { "relation": "contains", @@ -156188,9 +156219,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -156198,9 +156229,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -156208,9 +156239,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -156218,9 +156249,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -156228,9 +156259,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_select_\u06cc\u06a9\u062f\u0633\u062a_\u0648_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a_\u062f\u0631_\u0645\u0631\u0627\u062c\u0639\u0647", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -156238,9 +156269,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pricing_and_selects_cleanup_select_list\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_select_list\u0647\u0627" }, { "relation": "contains", @@ -156248,9 +156279,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pricing_and_selects_cleanup_select_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u0641\u0631\u0645_\u0645\u0631\u0627\u062c\u0639\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_select_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u0641\u0631\u0645_\u0645\u0631\u0627\u062c\u0639\u0647" }, { "relation": "contains", @@ -156258,9 +156289,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u062a\u0639\u062f\u0627\u062f_\u062e\u062f\u0645\u062a" }, { "relation": "contains", @@ -156268,9 +156299,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u0635\u0641\u062d\u0647_\u06cc_insurance_pricing_\u062f\u0648_\u0628\u062e\u0634_\u0647\u0645_\u067e\u0648\u0634\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u0635\u0641\u062d\u0647_\u06cc_insurance_pricing_\u062f\u0648_\u0628\u062e\u0634_\u0647\u0645_\u067e\u0648\u0634\u0627\u0646" }, { "relation": "contains", @@ -156278,9 +156309,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f1_\u0627\u062f\u063a\u0627\u0645_\u0635\u0641\u062d\u0647_\u06cc_insurance_pricing", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f1_\u0627\u062f\u063a\u0627\u0645_\u0635\u0641\u062d\u0647_\u06cc_insurance_pricing" }, { "relation": "contains", @@ -156288,9 +156319,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f2_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_select_\u06cc\u06a9\u062f\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f2_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_select_\u06cc\u06a9\u062f\u0633\u062a" }, { "relation": "contains", @@ -156298,9 +156329,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f3_\u062a\u0639\u062f\u0627\u062f_quantity_\u0628\u0631\u0627\u06cc_\u062e\u062f\u0645\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f3_\u062a\u0639\u062f\u0627\u062f_quantity_\u0628\u0631\u0627\u06cc_\u062e\u062f\u0645\u0627\u062a" }, { "relation": "contains", @@ -156308,9 +156339,9 @@ "source_file": ".claude/prompt/insurance-pricing-and-selects-cleanup.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_pricing_and_selects_cleanup_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f4_select_\u0628\u06cc\u0645\u0647_\u0641\u0642\u0637_\u0627\u0632_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627_\u062f\u0631\u0635\u062f_\u062e\u0648\u062f\u06a9\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_insurance_pricing_and_selects_cleanup_\u06f4_select_\u0628\u06cc\u0645\u0647_\u0641\u0642\u0637_\u0627\u0632_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627_\u062f\u0631\u0635\u062f_\u062e\u0648\u062f\u06a9\u0627\u0631" }, { "relation": "contains", @@ -156318,9 +156349,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing", - "target": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628" }, { "relation": "contains", @@ -156328,9 +156359,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -156338,9 +156369,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -156348,9 +156379,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -156358,9 +156389,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -156368,9 +156399,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -156378,9 +156409,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -156388,9 +156419,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "target": "prompt_insurance_visit_pricing_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -156398,9 +156429,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_visit_pricing_\u06f1_\u062a\u062d\u0644\u06cc\u0644_\u0648_\u0637\u0631\u0627\u062d\u06cc_\u0645\u062f\u0644_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u06f1_\u062a\u062d\u0644\u06cc\u0644_\u0648_\u0637\u0631\u0627\u062d\u06cc_\u0645\u062f\u0644_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc" }, { "relation": "contains", @@ -156408,9 +156439,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_visit_pricing_\u06f2_entity_migration", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u06f2_entity_migration" }, { "relation": "contains", @@ -156418,9 +156449,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_visit_pricing_\u06f3_api", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u06f3_api" }, { "relation": "contains", @@ -156428,9 +156459,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_visit_pricing_\u06f4_admin_frontend", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u06f4_admin_frontend" }, { "relation": "contains", @@ -156438,9 +156469,9 @@ "source_file": ".claude/prompt/insurance-visit-pricing.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_insurance_visit_pricing_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_insurance_visit_pricing_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -156448,9 +156479,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address", - "target": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc" }, { "relation": "contains", @@ -156458,9 +156489,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -156468,9 +156499,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L385", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647" }, { "relation": "contains", @@ -156478,9 +156509,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -156488,9 +156519,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -156498,9 +156529,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L408", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -156508,9 +156539,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u067e\u0631\u0627\u0645\u067e\u062a_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0648_location_id_\u062f\u0631_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "prompt_location_clinic_address_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0647\u062f\u0641" }, { "relation": "contains", @@ -156518,9 +156549,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_location_clinic_address_api_endpoint_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_api_endpoint_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -156528,9 +156559,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_location_clinic_address_endpoint_\u0645\u0648\u062c\u0648\u062f_workaround_\u06a9\u0647_\u062d\u0630\u0641_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_endpoint_\u0645\u0648\u062c\u0648\u062f_workaround_\u06a9\u0647_\u062d\u0630\u0641_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -156538,9 +156569,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_location_clinic_address_entity_doctoraddress", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_entity_doctoraddress" }, { "relation": "contains", @@ -156548,9 +156579,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_location_clinic_address_frontend_\u0645\u0648\u062c\u0648\u062f_doctordetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_frontend_\u0645\u0648\u062c\u0648\u062f_doctordetailpage_tsx" }, { "relation": "contains", @@ -156558,9 +156589,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f", - "target": "prompt_location_clinic_address_\u062c\u062f\u0648\u0644_doctor_addresses_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u062c\u062f\u0648\u0644_doctor_addresses_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -156568,9 +156599,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u062a\u063a\u06cc\u06cc\u0631_\u0633\u0627\u062e\u062a\u0627\u0631_doctor_addresses", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_migration_\u062a\u063a\u06cc\u06cc\u0631_\u0633\u0627\u062e\u062a\u0627\u0631_doctor_addresses" }, { "relation": "contains", @@ -156578,9 +156609,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_\u0622\u067e\u062f\u06cc\u062a_entity_doctoraddress", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_\u0622\u067e\u062f\u06cc\u062a_entity_doctoraddress" }, { "relation": "contains", @@ -156588,9 +156619,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_\u062d\u0630\u0641_endpoint_\u0642\u062f\u06cc\u0645\u06cc_\u0648_\u0622\u067e\u062f\u06cc\u062a_doctorcontroller", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_\u062d\u0630\u0641_endpoint_\u0642\u062f\u06cc\u0645\u06cc_\u0648_\u0622\u067e\u062f\u06cc\u062a_doctorcontroller" }, { "relation": "contains", @@ -156598,9 +156629,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -156608,9 +156639,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L198", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_endpoint_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_endpoint_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -156618,9 +156649,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_frontend_doctordetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_frontend_doctordetailpage_tsx" }, { "relation": "contains", @@ -156628,9 +156659,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L334", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_frontend_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_clinicdetailpage_tsx", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_frontend_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_clinicdetailpage_tsx" }, { "relation": "contains", @@ -156638,9 +156669,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_location_clinic_address_delete_api_v1_clinic_clinicuuid_address_addressuuid_\u062d\u0630\u0641", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_delete_api_v1_clinic_clinicuuid_address_addressuuid_\u062d\u0630\u0641" }, { "relation": "contains", @@ -156648,9 +156679,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_location_clinic_address_get_api_v1_clinic_clinicuuid_addresses_\u0644\u06cc\u0633\u062a_\u0622\u062f\u0631\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_get_api_v1_clinic_clinicuuid_addresses_\u0644\u06cc\u0633\u062a_\u0622\u062f\u0631\u0633_\u0647\u0627" }, { "relation": "contains", @@ -156658,9 +156689,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_location_clinic_address_patch_api_v1_clinic_clinicuuid_address_addressuuid_\u0648\u06cc\u0631\u0627\u06cc\u0634", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_patch_api_v1_clinic_clinicuuid_address_addressuuid_\u0648\u06cc\u0631\u0627\u06cc\u0634" }, { "relation": "contains", @@ -156668,9 +156699,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_crud_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "prompt_location_clinic_address_post_api_v1_clinic_clinicuuid_address_\u0627\u06cc\u062c\u0627\u062f_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_post_api_v1_clinic_clinicuuid_address_\u0627\u06cc\u062c\u0627\u062f_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -156678,9 +156709,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L274", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_frontend_doctordetailpage_tsx", - "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_interface", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_interface" }, { "relation": "contains", @@ -156688,9 +156719,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L306", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_frontend_doctordetailpage_tsx", - "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_sessioneditor_dropdown_\u0644\u0648\u06a9\u06cc\u0634\u0646", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_sessioneditor_dropdown_\u0644\u0648\u06a9\u06cc\u0634\u0646" }, { "relation": "contains", @@ -156698,9 +156729,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f6_frontend_doctordetailpage_tsx", - "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u0622\u062f\u0631\u0633_\u0647\u0627_\u062f\u0631_schedulesection", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0622\u067e\u062f\u06cc\u062a_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u0622\u062f\u0631\u0633_\u0647\u0627_\u062f\u0631_schedulesection" }, { "relation": "contains", @@ -156708,9 +156739,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_frontend_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_location_clinic_address_interface_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_interface_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -156718,9 +156749,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L359", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_frontend_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_location_clinic_address_ui_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_clinic_owner", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_ui_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_clinic_owner" }, { "relation": "contains", @@ -156728,9 +156759,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L350", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f7_frontend_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0622\u062f\u0631\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_clinicdetailpage_tsx", - "target": "prompt_location_clinic_address_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -156738,9 +156769,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_location_clinic_address_docs_api_appointment_settings_md", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_docs_api_appointment_settings_md" }, { "relation": "contains", @@ -156748,9 +156779,9 @@ "source_file": ".claude/prompt/location-clinic-address.md", "source_location": "L410", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_location_clinic_address_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_location_clinic_address_docs_api_clinic_md", - "confidence_score": 1.0 + "target": "prompt_location_clinic_address_docs_api_clinic_md" }, { "relation": "contains", @@ -156758,9 +156789,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable", - "target": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc" }, { "relation": "contains", @@ -156768,9 +156799,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -156778,9 +156809,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -156788,9 +156819,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -156798,9 +156829,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -156808,9 +156839,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -156818,9 +156849,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -156828,9 +156859,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648_\u06a9\u0631\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0631\u0648\u0632_\u062c\u0627\u0631\u06cc", - "target": "prompt_mark_past_slots_unavailable_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -156838,9 +156869,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_mark_past_slots_unavailable_getavailableslots_\u0628\u0631\u0627\u06cc_\u0686\u06a9_\u06a9\u0627\u0646\u0641\u0644\u06cc\u06a9\u062a_\u0631\u0632\u0631\u0648_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_flat_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_getavailableslots_\u0628\u0631\u0627\u06cc_\u0686\u06a9_\u06a9\u0627\u0646\u0641\u0644\u06cc\u06a9\u062a_\u0631\u0632\u0631\u0648_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_flat_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648" }, { "relation": "contains", @@ -156848,9 +156879,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_mark_past_slots_unavailable_slotcalculatorservice_getallslotswithavailability_is_available_\u0641\u0642\u0637_\u0631\u0632\u0631\u0648_\u0631\u0627_\u0686\u06a9_\u0645\u06cc_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_slotcalculatorservice_getallslotswithavailability_is_available_\u0641\u0642\u0637_\u0631\u0632\u0631\u0648_\u0631\u0627_\u0686\u06a9_\u0645\u06cc_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -156858,9 +156889,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_mark_past_slots_unavailable_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u0631\u0627_\u062f\u0631_is_available_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0646", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u0631\u0627_\u062f\u0631_is_available_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u06a9\u0646" }, { "relation": "contains", @@ -156868,9 +156899,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_mark_past_slots_unavailable_\u06f2_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u0631\u0627_\u0627\u0632_getavailableslots_\u0647\u0645_\u062d\u0630\u0641_\u06a9\u0646_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u06f2_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u0631\u0627_\u0627\u0632_getavailableslots_\u0647\u0645_\u062d\u0630\u0641_\u06a9\u0646_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc" }, { "relation": "contains", @@ -156878,9 +156909,9 @@ "source_file": ".claude/prompt/mark-past-slots-unavailable.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_mark_past_slots_unavailable_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_mark_past_slots_unavailable_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_mark_past_slots_unavailable_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -156888,9 +156919,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard" }, { "relation": "contains", @@ -156898,9 +156929,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1031", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647" }, { "relation": "contains", @@ -156908,9 +156939,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06af\u0633\u062a\u0631\u0634_oauth_userinfo_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06af\u0633\u062a\u0631\u0634_oauth_userinfo_\u0628\u06a9_\u0627\u0646\u062f" }, { "relation": "contains", @@ -156918,9 +156949,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L301", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06f5_switch_context_api_\u0628\u06a9_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06f5_switch_context_api_\u0628\u06a9_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -156928,9 +156959,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L914", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -156938,9 +156969,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L369", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0628\u0647_\u0631\u0648\u0632_\u06a9\u0631\u062f\u0646_authstore_ts_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0628\u0647_\u0631\u0648\u0632_\u06a9\u0631\u062f\u0646_authstore_ts_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -156948,9 +156979,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L404", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u06f5_\u0635\u0641\u062d\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u06f5_\u0635\u0641\u062d\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -156958,9 +156989,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L455", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f3_\u0645\u062d\u0627\u0641\u0638\u062a_route_\u0647\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f3_\u0645\u062d\u0627\u0641\u0638\u062a_route_\u0647\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -156968,9 +156999,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L494", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f4_sidebar_\u067e\u0648\u06cc\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f4_sidebar_\u067e\u0648\u06cc\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -156978,9 +157009,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L542", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -156988,9 +157019,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L651", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f6_dashboardpage_tsx_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f6_dashboardpage_tsx_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -156998,9 +157029,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L695", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f7_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f7_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -157008,9 +157039,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L723", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f8_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631\u0634\u062f\u0647_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f8_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631\u0634\u062f\u0647_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157018,9 +157049,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L808", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157028,9 +157059,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646" }, { "relation": "contains", @@ -157038,9 +157069,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L982", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -157048,9 +157079,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0647\u062f\u0641_\u06a9\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0647\u062f\u0641_\u06a9\u0644\u06cc" }, { "relation": "contains", @@ -157058,9 +157089,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646" }, { "relation": "contains", @@ -157068,9 +157099,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u067e\u0631\u0627\u0645\u067e\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0686\u0646\u062f_\u0646\u0642\u0634\u0647_multi_role_dashboard", - "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_\u0628\u062e\u0648\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_\u0628\u062e\u0648\u0627\u0646" }, { "relation": "contains", @@ -157078,9 +157109,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -157088,9 +157119,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u06a9\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u06a9\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0646\u062f\u0647" }, { "relation": "contains", @@ -157098,9 +157129,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u062a\u063a\u06cc\u06cc\u0631_\u0631\u0648\u06cc_api_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062a\u063a\u06cc\u06cc\u0631_\u0631\u0648\u06cc_api_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -157108,9 +157139,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0686\u0646\u062f_context", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0686\u0646\u062f_context" }, { "relation": "contains", @@ -157118,9 +157149,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0642\u0627\u0646\u0648\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_context", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0642\u0627\u0646\u0648\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_context" }, { "relation": "contains", @@ -157128,9 +157159,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_available_contexts", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_available_contexts" }, { "relation": "contains", @@ -157138,9 +157169,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_db_key", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_db_key" }, { "relation": "contains", @@ -157148,9 +157179,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0641\u0627\u0647\u06cc\u0645_\u06a9\u0644\u06cc\u062f\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_multi_context_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_db_uuid", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0641\u0647\u0648\u0645_db_uuid" }, { "relation": "contains", @@ -157158,9 +157189,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f" }, { "relation": "contains", @@ -157168,9 +157199,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -157178,9 +157209,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L153", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06af\u0633\u062a\u0631\u0634_oauth_userinfo_\u0628\u06a9_\u0627\u0646\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_src_auth_controller_authcontroller_php", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_src_auth_controller_authcontroller_php" }, { "relation": "contains", @@ -157188,9 +157219,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L303", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u06f5_switch_context_api_\u0628\u06a9_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_src_auth_controller_authcontroller_php_303", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_src_auth_controller_authcontroller_php_303" }, { "relation": "contains", @@ -157198,9 +157229,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L305", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_src_auth_controller_authcontroller_php_303", - "target": "prompt_multi_role_dashboard_post_api_v1_auth_switch_context_is_authenticated_fully", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_post_api_v1_auth_switch_context_is_authenticated_fully" }, { "relation": "contains", @@ -157208,9 +157239,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L406", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u06f5_\u0635\u0641\u062d\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u06cc\u0637_\u06a9\u0627\u0631\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_assets_admin_pages_selectcontextpage_tsx", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_assets_admin_pages_selectcontextpage_tsx" }, { "relation": "contains", @@ -157218,9 +157249,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L457", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f3_\u0645\u062d\u0627\u0641\u0638\u062a_route_\u0647\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "target": "prompt_multi_role_dashboard_\u062f\u0631_app_tsx_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_roleroute_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0646", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062f\u0631_app_tsx_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_roleroute_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0646" }, { "relation": "contains", @@ -157228,9 +157259,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f4_sidebar_\u067e\u0648\u06cc\u0627_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx" }, { "relation": "contains", @@ -157238,9 +157269,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx", - "target": "prompt_multi_role_dashboard_\u0627\u062f\u0645\u06cc\u0646_\u0647\u0645\u0647_\u0644\u06cc\u0646\u06a9_\u0647\u0627\u06cc_\u0641\u0639\u0644\u06cc_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0627\u062f\u0645\u06cc\u0646_\u0647\u0645\u0647_\u0644\u06cc\u0646\u06a9_\u0647\u0627\u06cc_\u0641\u0639\u0644\u06cc_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631" }, { "relation": "contains", @@ -157248,9 +157279,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L520", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx", - "target": "prompt_multi_role_dashboard_\u062f\u06a9\u062a\u0631_doctor", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062f\u06a9\u062a\u0631_doctor" }, { "relation": "contains", @@ -157258,9 +157289,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L509", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx", - "target": "prompt_multi_role_dashboard_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0635\u0627\u062d\u0628_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic" }, { "relation": "contains", @@ -157268,9 +157299,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_assets_admin_components_layout_sidebar_tsx", - "target": "prompt_multi_role_dashboard_\u0645\u0646\u0634\u06cc_secretary_\u0628\u0631_\u0627\u0633\u0627\u0633_context_permissions_resources", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0646\u0634\u06cc_secretary_\u0628\u0631_\u0627\u0633\u0627\u0633_context_permissions_resources" }, { "relation": "contains", @@ -157278,9 +157309,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L551", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_clinic_role_clinic", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_clinic_role_clinic" }, { "relation": "contains", @@ -157288,9 +157319,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L586", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_doctor_role_doctor", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_doctor_role_doctor" }, { "relation": "contains", @@ -157298,9 +157329,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L621", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_secretary_role_secretary", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_get_api_v1_dashboard_secretary_role_secretary" }, { "relation": "contains", @@ -157308,9 +157339,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L544", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f5_endpoint_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_src_dashboard_controller_dashboardcontroller_php", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_src_dashboard_controller_dashboardcontroller_php" }, { "relation": "contains", @@ -157318,9 +157349,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L697", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f7_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_assets_admin_pages_myclinicpage_tsx", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0627\u06cc\u0644_\u062c\u062f\u06cc\u062f_assets_admin_pages_myclinicpage_tsx" }, { "relation": "contains", @@ -157328,9 +157359,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L725", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f8_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631\u0634\u062f\u0647_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_endpoint_\u062c\u062f\u06cc\u062f_get_api_v1_my_appointments_is_authenticated_fully", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_endpoint_\u062c\u062f\u06cc\u062f_get_api_v1_my_appointments_is_authenticated_fully" }, { "relation": "contains", @@ -157338,9 +157369,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L750", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f8_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631\u0634\u062f\u0647_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_api_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx" }, { "relation": "contains", @@ -157348,9 +157379,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L770", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx", - "target": "prompt_multi_role_dashboard_\u0646\u0645\u0627\u06cc_\u062c\u062f\u0648\u0644\u06cc_tableview", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0646\u0645\u0627\u06cc_\u062c\u062f\u0648\u0644\u06cc_tableview" }, { "relation": "contains", @@ -157358,9 +157389,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L775", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx", - "target": "prompt_multi_role_dashboard_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc_timelineview", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0646\u0645\u0627\u06cc_\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc_timelineview" }, { "relation": "contains", @@ -157368,9 +157399,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L763", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx", - "target": "prompt_multi_role_dashboard_\u0647\u062f\u0631_\u0635\u0641\u062d\u0647_\u0645\u0634\u062a\u0631\u06a9_\u0647\u0631_\u062f\u0648_\u0646\u0645\u0627", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0647\u062f\u0631_\u0635\u0641\u062d\u0647_\u0645\u0634\u062a\u0631\u06a9_\u0647\u0631_\u062f\u0648_\u0646\u0645\u0627" }, { "relation": "contains", @@ -157378,9 +157409,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L783", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_appointmentspage_tsx", - "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0628\u0627\u06cc\u062f_\u062f\u0631_entity_\u0648_frontend_\u0647\u0631_\u062f\u0648_\u0628\u0627\u0634\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0628\u0627\u06cc\u062f_\u062f\u0631_entity_\u0648_frontend_\u0647\u0631_\u062f\u0648_\u0628\u0627\u0634\u0646\u062f" }, { "relation": "contains", @@ -157388,9 +157419,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L848", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointment_entity", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointment_entity" }, { "relation": "contains", @@ -157398,9 +157429,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L868", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointmentcontroller_book", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointmentcontroller_book" }, { "relation": "contains", @@ -157408,9 +157439,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L815", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_siteconfig_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_siteconfig_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157418,9 +157449,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L840", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u06a9\u0646\u062a\u0631\u0644\u0631_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u06a9\u0646\u062a\u0631\u0644\u0631_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157428,9 +157459,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L905", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointmentspage_tsx", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_appointmentspage_tsx" }, { "relation": "contains", @@ -157438,9 +157469,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L895", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0635\u0641\u062d\u0647_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u0635\u0641\u062d\u0647_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157448,9 +157479,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L810", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f9_\u0633\u06cc\u0633\u062a\u0645_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0628_\u0648\u06a9\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0628_\u0648\u06a9\u0627\u0631" }, { "relation": "contains", @@ -157458,9 +157489,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L943", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_endpoint_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_endpoint_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157468,9 +157499,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L922", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u06cc\u0644\u062f_\u062c\u062f\u06cc\u062f_\u0631\u0648\u06cc_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u06cc\u0644\u062f_\u062c\u062f\u06cc\u062f_\u0631\u0648\u06cc_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -157478,9 +157509,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L968", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u0628_\u0628\u062e\u0634_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u0628_\u0628\u062e\u0634_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc" }, { "relation": "contains", @@ -157488,9 +157519,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L916", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0645\u0631\u062d\u0644\u0647_\u06f1\u06f0_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0627\u0637\u0644\u0627\u0639_\u0631\u0633\u0627\u0646\u06cc_\u0646\u0648\u0628\u062a_\u0628\u06a9_\u0627\u0646\u062f_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "target": "prompt_multi_role_dashboard_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0628_\u0648\u06a9\u0627\u0631_916", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0628_\u0648\u06a9\u0627\u0631_916" }, { "relation": "contains", @@ -157498,9 +157529,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L984", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_multi_role_dashboard_css_ui_\u0641\u0642\u0637_template_css", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_css_ui_\u0641\u0642\u0637_template_css" }, { "relation": "contains", @@ -157508,9 +157539,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L998", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u0642\u0648\u0627\u0646\u06cc\u0646_\u06a9\u0644\u06cc" }, { "relation": "contains", @@ -157518,9 +157549,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1003", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_multi_role_dashboard_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc" }, { "relation": "contains", @@ -157528,9 +157559,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L993", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "target": "prompt_multi_role_dashboard_\u067e\u0627\u0633\u062e_\u0647\u0627\u06cc_api", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u067e\u0627\u0633\u062e_\u0647\u0627\u06cc_api" }, { "relation": "contains", @@ -157538,9 +157569,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1062", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_migration", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_migration" }, { "relation": "contains", @@ -157548,9 +157579,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1033", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631" }, { "relation": "contains", @@ -157558,9 +157589,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1041", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0628\u06a9_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157568,9 +157599,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1065", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_\u062f\u0627\u06a9\u06cc\u0648\u0645\u0646\u062a_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u062f\u0627\u06a9\u06cc\u0648\u0645\u0646\u062a_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157578,9 +157609,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1050", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062a\u063a\u06cc\u06cc\u0631" }, { "relation": "contains", @@ -157588,9 +157619,9 @@ "source_file": ".claude/prompt/multi-role-dashboard.md", "source_location": "L1057", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_multi_role_dashboard_\u062e\u0644\u0627\u0635\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0641\u062a\u0647", - "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_multi_role_dashboard_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157598,9 +157629,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint", - "target": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments" }, { "relation": "contains", @@ -157608,9 +157639,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -157618,9 +157649,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -157628,9 +157659,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -157638,9 +157669,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -157648,9 +157679,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -157658,9 +157689,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -157668,9 +157699,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_endpoint_\u0644\u06cc\u0633\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u0644\u0627\u06af\u06cc\u0646_\u0634\u062f\u0647_get_api_v1_my_payments", - "target": "prompt_my_payments_list_endpoint_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -157678,9 +157709,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_my_payments_list_endpoint_payment_\u0644\u06cc\u0646\u06a9_user_toarray", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_payment_\u0644\u06cc\u0646\u06a9_user_toarray" }, { "relation": "contains", @@ -157688,9 +157719,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_my_payments_list_endpoint_paymentrepository_\u0628\u062f\u0648\u0646_findbyuser", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_paymentrepository_\u0628\u062f\u0648\u0646_findbyuser" }, { "relation": "contains", @@ -157698,9 +157729,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_my_payments_list_endpoint_route_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0641\u0631\u0627\u0646\u062a_\u0635\u062f\u0627_\u0645\u06cc_\u0632\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_route_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0641\u0631\u0627\u0646\u062a_\u0635\u062f\u0627_\u0645\u06cc_\u0632\u0646\u062f" }, { "relation": "contains", @@ -157708,9 +157739,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_my_payments_list_endpoint_\u06f1_findbyuser_\u062f\u0631_paymentrepository", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u06f1_findbyuser_\u062f\u0631_paymentrepository" }, { "relation": "contains", @@ -157718,9 +157749,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_my_payments_list_endpoint_\u06f2_endpoint_get_api_v1_my_payments", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u06f2_endpoint_get_api_v1_my_payments" }, { "relation": "contains", @@ -157728,9 +157759,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_my_payments_list_endpoint_\u06f3_\u0645\u0637\u0645\u0626\u0646_\u0634\u0648_route_\u0639\u0645\u0648\u0645\u06cc_auth_\u062f\u0631\u0633\u062a_\u0627\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u06f3_\u0645\u0637\u0645\u0626\u0646_\u0634\u0648_route_\u0639\u0645\u0648\u0645\u06cc_auth_\u062f\u0631\u0633\u062a_\u0627\u0633\u062a" }, { "relation": "contains", @@ -157738,9 +157769,9 @@ "source_file": ".claude/prompt/my-payments-list-endpoint.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_my_payments_list_endpoint_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_my_payments_list_endpoint_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_my_payments_list_endpoint_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -157748,9 +157779,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile", - "target": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -157758,9 +157789,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -157768,9 +157799,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -157778,9 +157809,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -157788,9 +157819,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -157798,9 +157829,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -157808,9 +157839,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -157818,9 +157849,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u06cc\u06a9\u062a\u0627_\u0628\u0648\u062f\u0646_\u06a9\u062f_\u0645\u0644\u06cc_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_\u0647\u0631_\u06a9\u062f_\u0645\u0644\u06cc_\u0641\u0642\u0637_\u06cc\u06a9_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_national_code_unique_profile_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -157828,9 +157859,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_national_code_unique_profile_\u06f1_\u0642\u06cc\u062f_\u06cc\u06a9\u062a\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_partial_\u0641\u0642\u0637_\u0645\u0642\u0627\u062f\u06cc\u0631_non_null", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06f1_\u0642\u06cc\u062f_\u06cc\u06a9\u062a\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_partial_\u0641\u0642\u0637_\u0645\u0642\u0627\u062f\u06cc\u0631_non_null" }, { "relation": "contains", @@ -157838,9 +157869,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_national_code_unique_profile_\u06f2_\u0645\u062a\u062f_repository", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06f2_\u0645\u062a\u062f_repository" }, { "relation": "contains", @@ -157848,9 +157879,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_national_code_unique_profile_\u06f3_\u0686\u06a9_\u06cc\u06a9\u062a\u0627\u06cc\u06cc_\u062f\u0631_\u0633\u0637\u062d_\u0627\u067e\u0644\u06cc\u06a9\u06cc\u0634\u0646_\u0642\u0628\u0644_\u0627\u0632_flush", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06f3_\u0686\u06a9_\u06cc\u06a9\u062a\u0627\u06cc\u06cc_\u062f\u0631_\u0633\u0637\u062d_\u0627\u067e\u0644\u06cc\u06a9\u06cc\u0634\u0646_\u0642\u0628\u0644_\u0627\u0632_flush" }, { "relation": "contains", @@ -157858,9 +157889,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_national_code_unique_profile_\u06f4_\u06a9\u062f_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06f4_\u06a9\u062f_\u062e\u0637\u0627" }, { "relation": "contains", @@ -157868,9 +157899,9 @@ "source_file": ".claude/prompt/national-code-unique-profile.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_national_code_unique_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_national_code_unique_profile_\u06f5_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0646\u0634\u06cc_\u0633\u0627\u06cc\u0631", - "confidence_score": 1.0 + "target": "prompt_national_code_unique_profile_\u06f5_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0646\u0634\u06cc_\u0633\u0627\u06cc\u0631" }, { "relation": "contains", @@ -157878,9 +157909,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux", - "target": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -157888,9 +157919,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -157898,9 +157929,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -157908,9 +157939,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -157918,9 +157949,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -157928,9 +157959,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -157938,9 +157969,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -157948,9 +157979,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u0645\u0648\u062f\u0627\u0644_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u062c\u062f\u06cc\u062f", - "target": "prompt_new_visit_modal_ux_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -157958,9 +157989,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_new_visit_modal_ux_\u06f1_\u0633\u0627\u062e\u062a\u0627\u0631_\u0628\u0635\u0631\u06cc_\u0645\u0648\u062f\u0627\u0644", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u06f1_\u0633\u0627\u062e\u062a\u0627\u0631_\u0628\u0635\u0631\u06cc_\u0645\u0648\u062f\u0627\u0644" }, { "relation": "contains", @@ -157968,9 +157999,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_new_visit_modal_ux_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0647_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -157978,9 +158009,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_new_visit_modal_ux_\u06f3_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u06cc\u06a9\u062f\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u06f3_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u06cc\u06a9\u062f\u0633\u062a" }, { "relation": "contains", @@ -157988,9 +158019,9 @@ "source_file": ".claude/prompt/new-visit-modal-ux.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_new_visit_modal_ux_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_new_visit_modal_ux_\u06f4_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_new_visit_modal_ux_\u06f4_\u062a\u0633\u062a" }, { "relation": "contains", @@ -157998,9 +158029,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding", - "target": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -158008,9 +158039,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -158018,9 +158049,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158028,9 +158059,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158038,9 +158069,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158048,9 +158079,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -158058,9 +158089,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158068,9 +158099,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0627\u062a\u0635\u0627\u0644_\u067e\u0631\u0648\u0646\u062f\u0647_\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631", - "target": "prompt_patient_record_profile_binding_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -158078,9 +158109,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_patient_record_profile_binding_\u06f1_\u062a\u062d\u0644\u06cc\u0644_\u0631\u0627\u0628\u0637\u0647_user_userprofile", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u06f1_\u062a\u062d\u0644\u06cc\u0644_\u0631\u0627\u0628\u0637\u0647_user_userprofile" }, { "relation": "contains", @@ -158088,9 +158119,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_patient_record_profile_binding_\u06f2_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u067e\u0631\u0648\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u06f2_\u063a\u0646\u06cc_\u0633\u0627\u0632\u06cc_\u067e\u0627\u0633\u062e_\u067e\u0631\u0648\u0646\u062f\u0647" }, { "relation": "contains", @@ -158098,9 +158129,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_patient_record_profile_binding_\u06f3_admin_frontend_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u06f3_admin_frontend_\u0646\u0645\u0627\u06cc\u0634_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647" }, { "relation": "contains", @@ -158108,9 +158139,9 @@ "source_file": ".claude/prompt/patient-record-profile-binding.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_patient_record_profile_binding_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_patient_record_profile_binding_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_patient_record_profile_binding_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -158118,9 +158149,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui", - "target": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc" }, { "relation": "contains", @@ -158128,9 +158159,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -158138,9 +158169,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -158148,9 +158179,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158158,9 +158189,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158168,9 +158199,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158178,9 +158209,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -158188,9 +158219,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631\u06af\u0627\u0647_\u062a\u0633\u062a_\u062f\u0631_\u0631\u0627\u0628\u0637_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc", - "target": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158198,9 +158229,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_payment_test_mode_ui_backend_endpoint_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_backend_endpoint_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0633\u062a" }, { "relation": "contains", @@ -158208,9 +158239,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_payment_test_mode_ui_frontend_smswalletpage_modal_\u062e\u0637_\u06f3\u06f4\u06f8_\u06f3\u06f7\u06f3", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_frontend_smswalletpage_modal_\u062e\u0637_\u06f3\u06f4\u06f8_\u06f3\u06f7\u06f3" }, { "relation": "contains", @@ -158218,9 +158249,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_payment_test_mode_ui_frontend_subscriptionpage_modal_\u062e\u0637_\u06f3\u06f0\u06f7_\u06f3\u06f2\u06f7", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_frontend_subscriptionpage_modal_\u062e\u0637_\u06f3\u06f0\u06f7_\u06f3\u06f2\u06f7" }, { "relation": "contains", @@ -158228,9 +158259,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_test_mode_ui_\u06f1_backend_endpoint_\u0639\u0645\u0648\u0645\u06cc_get_api_v1_payment_config", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u06f1_backend_endpoint_\u0639\u0645\u0648\u0645\u06cc_get_api_v1_payment_config" }, { "relation": "contains", @@ -158238,9 +158269,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_test_mode_ui_\u06f2_frontend_hook_\u0628\u0631\u0627\u06cc_\u062e\u0648\u0627\u0646\u062f\u0646_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u06f2_frontend_hook_\u0628\u0631\u0627\u06cc_\u062e\u0648\u0627\u0646\u062f\u0646_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a" }, { "relation": "contains", @@ -158248,9 +158279,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_test_mode_ui_\u06f3_frontend_smswalletpage_\u067e\u0646\u0647\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u06a9\u0646\u0646\u062f\u0647_\u062f\u0631\u06af\u0627\u0647_\u062f\u0631_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u06f3_frontend_smswalletpage_\u067e\u0646\u0647\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u06a9\u0646\u0646\u062f\u0647_\u062f\u0631\u06af\u0627\u0647_\u062f\u0631_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a" }, { "relation": "contains", @@ -158258,9 +158289,9 @@ "source_file": ".claude/prompt/payment-test-mode-ui.md", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_test_mode_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_test_mode_ui_\u06f4_frontend_subscriptionpage_\u067e\u0646\u0647\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u06a9\u0646\u0646\u062f\u0647_\u062f\u0631\u06af\u0627\u0647_\u062f\u0631_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_payment_test_mode_ui_\u06f4_frontend_subscriptionpage_\u067e\u0646\u0647\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u06a9\u0646\u0646\u062f\u0647_\u062f\u0631\u06af\u0627\u0647_\u062f\u0631_\u062d\u0627\u0644\u062a_\u062a\u0633\u062a" }, { "relation": "contains", @@ -158268,9 +158299,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -158278,9 +158309,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -158288,9 +158319,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158298,9 +158329,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158308,9 +158339,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158318,9 +158349,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -158328,9 +158359,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158338,9 +158369,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0646\u0637\u0642_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648\u0636\u0639\u06cc\u062a_canceled_allowlist_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -158348,9 +158379,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_allowlist_\u062b\u0627\u0628\u062a_\u0627\u0632_env_services_yaml_allowedfrontendhosts_env_allowed_frontend_hosts", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_allowlist_\u062b\u0627\u0628\u062a_\u0627\u0632_env_services_yaml_allowedfrontendhosts_env_allowed_frontend_hosts" }, { "relation": "contains", @@ -158358,9 +158389,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_callback_\u0627\u0646\u0635\u0631\u0627\u0641_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0639\u0627\u062f\u0644_\u062e\u0637\u0627_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_callback_\u0627\u0646\u0635\u0631\u0627\u0641_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0639\u0627\u062f\u0644_\u062e\u0637\u0627_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -158368,9 +158399,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_expire_\u0646\u0648\u0628\u062a_payment_\u0631\u0627_\u062f\u0633\u062a_\u0646\u0645\u06cc_\u0632\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_expire_\u0646\u0648\u0628\u062a_payment_\u0631\u0627_\u062f\u0633\u062a_\u0646\u0645\u06cc_\u0632\u0646\u062f" }, { "relation": "contains", @@ -158378,9 +158409,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_payment_\u0628\u062f\u0648\u0646_canceled", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_payment_\u0628\u062f\u0648\u0646_canceled" }, { "relation": "contains", @@ -158388,9 +158419,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0648\u0636\u0639\u06cc\u062a_canceled", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0648\u0636\u0639\u06cc\u062a_canceled" }, { "relation": "contains", @@ -158398,9 +158429,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f2_\u062a\u0645\u0627\u06cc\u0632_\u0627\u0646\u0635\u0631\u0627\u0641_\u0627\u0632_\u062e\u0637\u0627_\u062f\u0631_gateway\u0647\u0627_\u0648_callback", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f2_\u062a\u0645\u0627\u06cc\u0632_\u0627\u0646\u0635\u0631\u0627\u0641_\u0627\u0632_\u062e\u0637\u0627_\u062f\u0631_gateway\u0647\u0627_\u0648_callback" }, { "relation": "contains", @@ -158408,9 +158439,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f3_canceled_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0645\u0647\u0644\u062a_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f3_canceled_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0645\u0647\u0644\u062a_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -158418,9 +158449,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f4_allowlist_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0627\u0632_siteconfig", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f4_allowlist_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0630\u06cc\u0631_\u0627\u0632_siteconfig" }, { "relation": "contains", @@ -158428,9 +158459,9 @@ "source_file": ".claude/prompt/payment-unified-status-canceled-and-managed-hosts.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_payment_unified_status_canceled_and_managed_hosts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_payment_md", - "confidence_score": 1.0 + "target": "prompt_payment_unified_status_canceled_and_managed_hosts_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_payment_md" }, { "relation": "contains", @@ -158438,9 +158469,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration", - "target": "prompt_pre_registration_pre_registration_feature", - "confidence_score": 1.0 + "target": "prompt_pre_registration_pre_registration_feature" }, { "relation": "contains", @@ -158448,9 +158479,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_pre_registration_feature", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -158458,9 +158489,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L196", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_pre_registration_feature", - "target": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc" }, { "relation": "contains", @@ -158468,9 +158499,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_pre_registration_feature", - "target": "prompt_pre_registration_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158478,9 +158509,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_entity_\u0648_migration_preregistration", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f1_entity_\u0648_migration_preregistration" }, { "relation": "contains", @@ -158488,9 +158519,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_backend_public_pre_registration_endpoint", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f2_backend_public_pre_registration_endpoint" }, { "relation": "contains", @@ -158498,9 +158529,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_backend_admin_pre_registration_management_endpoints", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f3_backend_admin_pre_registration_management_endpoints" }, { "relation": "contains", @@ -158508,9 +158539,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_frontend_homepage_\u062f\u0648_\u062f\u06a9\u0645\u0647_\u062f\u0631_header_\u0648_hero", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f4_frontend_homepage_\u062f\u0648_\u062f\u06a9\u0645\u0647_\u062f\u0631_header_\u0648_hero" }, { "relation": "contains", @@ -158518,9 +158549,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627", - "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_admin_panel_\u0635\u0641\u062d\u0647_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0642\u0627\u0628\u0644\u06cc\u062a_\u06f5_frontend_admin_panel_\u0635\u0641\u062d\u0647_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0647\u0627" }, { "relation": "contains", @@ -158528,9 +158559,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "target": "prompt_pre_registration_sms", - "confidence_score": 1.0 + "target": "prompt_pre_registration_sms" }, { "relation": "contains", @@ -158538,9 +158569,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L198", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "target": "prompt_pre_registration_\u0627\u0645\u0646\u06cc\u062a", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0627\u0645\u0646\u06cc\u062a" }, { "relation": "contains", @@ -158548,9 +158579,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "target": "prompt_pre_registration_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -158558,9 +158589,9 @@ "source_file": ".claude/prompt/pre-registration.md", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "target": "prompt_pre_registration_\u067e\u0633\u0648\u0631\u062f_\u062a\u0635\u0627\u062f\u0641\u06cc", - "confidence_score": 1.0 + "target": "prompt_pre_registration_\u067e\u0633\u0648\u0631\u062f_\u062a\u0635\u0627\u062f\u0641\u06cc" }, { "relation": "contains", @@ -158568,9 +158599,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist", - "target": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix" }, { "relation": "contains", @@ -158578,9 +158609,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -158588,9 +158619,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158598,9 +158629,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158608,9 +158639,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158618,9 +158649,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -158628,9 +158659,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158638,9 +158669,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0630\u062e\u06cc\u0631\u0647_\u0648_\u0646\u0645\u0627\u06cc\u0634_\u0635\u062d\u06cc\u062d_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u062f\u0631_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_unix", - "target": "prompt_profile_birthday_jalali_persist_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -158648,9 +158679,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_profile_birthday_jalali_persist_\u06f1_\u0630\u062e\u06cc\u0631\u0647_birthday_unix_\u062f\u0631_hydrate", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u06f1_\u0630\u062e\u06cc\u0631\u0647_birthday_unix_\u062f\u0631_hydrate" }, { "relation": "contains", @@ -158658,9 +158689,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_profile_birthday_jalali_persist_\u06f2_\u062e\u0631\u0648\u062c\u06cc_birthday_\u062f\u0631_toarray", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u06f2_\u062e\u0631\u0648\u062c\u06cc_birthday_\u062f\u0631_toarray" }, { "relation": "contains", @@ -158668,9 +158699,9 @@ "source_file": ".claude/prompt/profile-birthday-jalali-persist.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_profile_birthday_jalali_persist_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_profile_birthday_jalali_persist_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_profile_birthday_jalali_persist_\u06f3_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -158678,9 +158709,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit", - "target": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645" }, { "relation": "contains", @@ -158688,9 +158719,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0627\u0628\u0632\u0627\u0631\u0647\u0627_\u0648_\u0631\u0648\u0634_\u062a\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u062f\u0627\u062e\u0644_ddev", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0627\u0628\u0632\u0627\u0631\u0647\u0627_\u0648_\u0631\u0648\u0634_\u062a\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u062f\u0627\u062e\u0644_ddev" }, { "relation": "contains", @@ -158698,9 +158729,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -158708,9 +158739,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158718,9 +158749,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -158728,9 +158759,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158738,9 +158769,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158748,9 +158779,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0634\u0641_\u0628\u0627\u06af_\u062a\u0633\u062a_\u0631\u0641\u062a\u0627\u0631\u06cc_\u06a9\u0644_\u0633\u06cc\u0633\u062a\u0645", - "target": "prompt_qa_bug_audit_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -158758,9 +158789,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f1_\u0646\u0642\u0634\u0647_\u0628\u0631\u062f\u0627\u0631\u06cc_endpoint\u0647\u0627_\u0648_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f1_\u0646\u0642\u0634\u0647_\u0628\u0631\u062f\u0627\u0631\u06cc_endpoint\u0647\u0627_\u0648_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062a\u0633\u062a" }, { "relation": "contains", @@ -158768,9 +158799,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f2_\u062a\u0633\u062a_\u062e\u0637\u0627\u0647\u0627\u06cc_\u06f5\u06f0\u06f0_\u0648_\u0648\u0631\u0648\u062f\u06cc_\u0645\u0631\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f2_\u062a\u0633\u062a_\u062e\u0637\u0627\u0647\u0627\u06cc_\u06f5\u06f0\u06f0_\u0648_\u0648\u0631\u0648\u062f\u06cc_\u0645\u0631\u0632\u06cc" }, { "relation": "contains", @@ -158778,9 +158809,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f3_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0647\u0627_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_\u0628\u062e\u0634", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f3_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0647\u0627_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_\u0628\u062e\u0634" }, { "relation": "contains", @@ -158788,9 +158819,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f4_\u0627\u0646\u0637\u0628\u0627\u0642_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f4_\u0627\u0646\u0637\u0628\u0627\u0642_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api" }, { "relation": "contains", @@ -158798,9 +158829,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f5_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f5_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc" }, { "relation": "contains", @@ -158808,9 +158839,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f6_\u0633\u0644\u0627\u0645\u062a_build_\u0648_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f6_\u0633\u0644\u0627\u0645\u062a_build_\u0648_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc" }, { "relation": "contains", @@ -158818,9 +158849,9 @@ "source_file": ".claude/prompt/qa-bug-audit.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_qa_bug_audit_\u06f7_\u062a\u0648\u0644\u06cc\u062f_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af", - "confidence_score": 1.0 + "target": "prompt_qa_bug_audit_\u06f7_\u062a\u0648\u0644\u06cc\u062f_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af" }, { "relation": "contains", @@ -158828,9 +158859,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9" }, { "relation": "contains", @@ -158838,9 +158869,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0632\u0645\u06cc\u0646\u0647_\u0648_\u0686\u0631\u0627\u06cc\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0632\u0645\u06cc\u0646\u0647_\u0648_\u0686\u0631\u0627\u06cc\u06cc" }, { "relation": "contains", @@ -158848,9 +158879,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -158858,9 +158889,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -158868,9 +158899,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -158878,9 +158909,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -158888,9 +158919,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -158898,9 +158929,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_\u063a\u0646\u06cc_\u0646\u0648\u06cc\u0633\u0646\u062f\u0647_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u067e\u0627\u0633\u062e_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", - "target": "prompt_rating_multidimensional_and_rich_comments_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -158908,9 +158939,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0644\u0641_get_api_v1_rate_doctoruuid_\u0639\u0645\u0648\u0645\u06cc_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0627\u0644\u0641_get_api_v1_rate_doctoruuid_\u0639\u0645\u0648\u0645\u06cc_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632" }, { "relation": "contains", @@ -158918,9 +158949,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0628_post_api_v1_rate_auth_\u06af\u0627\u0631\u062f_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0645\u0648\u062c\u0648\u062f_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0628_post_api_v1_rate_auth_\u06af\u0627\u0631\u062f_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0645\u0648\u062c\u0648\u062f_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc" }, { "relation": "contains", @@ -158928,9 +158959,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "target": "prompt_rating_multidimensional_and_rich_comments_\u062c_get_api_v1_comments_doctoruuid_\u0639\u0645\u0648\u0645\u06cc_\u0647\u0631_\u0622\u06cc\u062a\u0645_\u0646\u0638\u0631", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u062c_get_api_v1_comments_doctoruuid_\u0639\u0645\u0648\u0645\u06cc_\u0647\u0631_\u0622\u06cc\u062a\u0645_\u0646\u0638\u0631" }, { "relation": "contains", @@ -158938,9 +158969,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "target": "prompt_rating_multidimensional_and_rich_comments_\u062f_post_api_v1_comment_auth_\u06af\u0627\u0631\u062f_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0645\u0648\u062c\u0648\u062f_\u062b\u0628\u062a_\u0646\u0638\u0631_\u067e\u0627\u0633\u062e", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u062f_post_api_v1_comment_auth_\u06af\u0627\u0631\u062f_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0645\u0648\u062c\u0648\u062f_\u062b\u0628\u062a_\u0646\u0638\u0631_\u067e\u0627\u0633\u062e" }, { "relation": "contains", @@ -158948,9 +158979,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0647\u062f\u0641_\u062f\u0642\u06cc\u0642\u0627_\u0622\u0646\u0686\u0647_ui_\u0627\u0646\u062a\u0638\u0627\u0631_\u062f\u0627\u0631\u062f", - "target": "prompt_rating_multidimensional_and_rich_comments_\u0647_post_api_v1_like_commentuuid_auth_\u0631\u0623\u06cc_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u0647_post_api_v1_like_commentuuid_auth_\u0631\u0623\u06cc_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9" }, { "relation": "contains", @@ -158958,9 +158989,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f1_entity_rate_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f1_entity_rate_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc" }, { "relation": "contains", @@ -158968,9 +158999,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f2_entity_comment_parent_replies_toarray_\u063a\u0646\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f2_entity_comment_parent_replies_toarray_\u063a\u0646\u06cc" }, { "relation": "contains", @@ -158978,9 +159009,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f3_entity_like_\u062c\u0647\u062a_\u062f\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f3_entity_like_\u062c\u0647\u062a_\u062f\u0627\u0631" }, { "relation": "contains", @@ -158988,9 +159019,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f4_repository_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f4_repository_\u0647\u0627" }, { "relation": "contains", @@ -158998,9 +159029,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L149", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f5_controller", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f5_controller" }, { "relation": "contains", @@ -159008,9 +159039,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f6_migration_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f6_migration_\u0647\u0627" }, { "relation": "contains", @@ -159018,9 +159049,9 @@ "source_file": ".claude/prompt/rating-multidimensional-and-rich-comments.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_multidimensional_and_rich_comments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_multidimensional_and_rich_comments_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_rating_md", - "confidence_score": 1.0 + "target": "prompt_rating_multidimensional_and_rich_comments_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_rating_md" }, { "relation": "contains", @@ -159028,9 +159059,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647" }, { "relation": "contains", @@ -159038,9 +159069,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u062a\u0633\u062a" }, { "relation": "contains", @@ -159048,9 +159079,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u062a\u0639\u0631\u06cc\u0641_\u062f\u0642\u06cc\u0642_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u062a\u0639\u0631\u06cc\u0641_\u062f\u0642\u06cc\u0642_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646" }, { "relation": "contains", @@ -159058,9 +159089,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159068,9 +159099,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159078,9 +159109,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159088,9 +159119,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159098,9 +159129,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -159108,9 +159139,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159118,9 +159149,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc_\u062b\u0628\u062a_\u0646\u0638\u0631_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0628\u0647_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062f\u0627\u0631\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062a\u0627\u06cc\u06cc\u062f_\u0634\u062f\u0647_\u062f\u0631_\u06f3\u06f0_\u0631\u0648\u0632_\u06af\u0630\u0634\u062a\u0647", - "target": "prompt_rating_require_recent_confirmed_appointment_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159128,9 +159159,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_require_recent_confirmed_appointment_\u06f1_\u0645\u062a\u062f_repository_hasrecentconfirmed", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u06f1_\u0645\u062a\u062f_repository_hasrecentconfirmed" }, { "relation": "contains", @@ -159138,9 +159169,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_require_recent_confirmed_appointment_\u06f2_\u06af\u0627\u0631\u062f_\u062f\u0631_rate_\u0648_createcomment", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u06f2_\u06af\u0627\u0631\u062f_\u062f\u0631_rate_\u0648_createcomment" }, { "relation": "contains", @@ -159148,9 +159179,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_require_recent_confirmed_appointment_\u06f3_\u06a9\u062f_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u06f3_\u06a9\u062f_\u062e\u0637\u0627" }, { "relation": "contains", @@ -159158,9 +159189,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_require_recent_confirmed_appointment_\u06f4_endpoint_\u0628\u0631\u0631\u0633\u06cc_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0628\u0631\u0627\u06cc_ui", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u06f4_endpoint_\u0628\u0631\u0631\u0633\u06cc_\u0648\u0627\u062c\u062f_\u0628\u0648\u062f\u0646_\u0628\u0631\u0627\u06cc_ui" }, { "relation": "contains", @@ -159168,9 +159199,9 @@ "source_file": ".claude/prompt/rating-require-recent-confirmed-appointment.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_rating_require_recent_confirmed_appointment_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_rating_require_recent_confirmed_appointment_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_rating_md", - "confidence_score": 1.0 + "target": "prompt_rating_require_recent_confirmed_appointment_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_rating_md" }, { "relation": "contains", @@ -159178,9 +159209,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access", - "target": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -159188,9 +159219,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159198,9 +159229,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159208,9 +159239,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159218,9 +159249,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159228,9 +159259,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -159238,9 +159269,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159248,9 +159279,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation_\u0628\u0647_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646", - "target": "prompt_representation_admin_panel_access_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159258,9 +159289,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f1_backend_\u0634\u0646\u0627\u062e\u062a\u0646_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631_primary_role", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f1_backend_\u0634\u0646\u0627\u062e\u062a\u0646_\u0646\u0642\u0634_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631_primary_role" }, { "relation": "contains", @@ -159268,9 +159299,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f2_backend_\u0627\u062c\u0627\u0632\u0647_\u06cc_createdoctor_\u0648_createclinic_\u0628\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f2_backend_\u0627\u062c\u0627\u0632\u0647_\u06cc_createdoctor_\u0648_createclinic_\u0628\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159278,9 +159309,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f3_backend_endpoint_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f3_backend_endpoint_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159288,9 +159319,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L154", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f4_backend_endpoint_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0631\u06cc_\u0628\u0631\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f4_backend_endpoint_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0631\u06cc_\u0628\u0631\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f" }, { "relation": "contains", @@ -159298,9 +159329,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f5_admin_spa_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u06af\u0627\u0631\u062f_\u0646\u0642\u0634", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f5_admin_spa_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u06af\u0627\u0631\u062f_\u0646\u0642\u0634" }, { "relation": "contains", @@ -159308,9 +159339,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f6_admin_spa_\u0645\u0646\u0648\u06cc_sidebar_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f6_admin_spa_\u0645\u0646\u0648\u06cc_sidebar_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159318,9 +159349,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f7_admin_spa_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f7_admin_spa_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159328,9 +159359,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f8_admin_spa_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f8_admin_spa_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159338,9 +159369,9 @@ "source_file": ".claude/prompt/representation-admin-panel-access.md", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_admin_panel_access_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_admin_panel_access_\u06f9_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_admin_panel_access_\u06f9_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -159348,9 +159379,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine", - "target": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -159358,9 +159389,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159368,9 +159399,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159378,9 +159409,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159388,9 +159419,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L317", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159398,9 +159429,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -159408,9 +159439,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159418,9 +159449,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u0646\u0648\u0628\u062a_\u0627\u0631\u062a\u0642\u0627\u0621_\u0645\u0627\u0644\u06cc\u0627\u062a_\u0628\u0631_\u0627\u0631\u0632\u0634_\u0627\u0641\u0632\u0648\u062f\u0647_\u0647\u0632\u06cc\u0646\u0647_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "prompt_representation_commission_tax_engine_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159428,9 +159459,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_commission_tax_engine_\u0627\u0644\u0641_\u0647\u0648\u06a9_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0647\u06cc\u0686_\u067e\u0648\u0631\u0633\u0627\u0646\u062a\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0627\u0644\u0641_\u0647\u0648\u06a9_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0647\u06cc\u0686_\u067e\u0648\u0631\u0633\u0627\u0646\u062a\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u0646\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -159438,9 +159469,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_commission_tax_engine_\u0628_commission_percent_\u0628\u0644\u0627\u0627\u0633\u062a\u0641\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u0628_commission_percent_\u0628\u0644\u0627\u0627\u0633\u062a\u0641\u0627\u062f\u0647" }, { "relation": "contains", @@ -159448,9 +159479,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_commission_tax_engine_\u062c_\u0627\u0644\u06af\u0648\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u0627\u0632_settlementcontroller_reject", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u062c_\u0627\u0644\u06af\u0648\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u0627\u0632_settlementcontroller_reject" }, { "relation": "contains", @@ -159458,9 +159489,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_commission_tax_engine_\u062f_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_whitelist_defaults", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u062f_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646_whitelist_defaults" }, { "relation": "contains", @@ -159468,9 +159499,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f1_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0645\u0627\u0644\u06cc_\u062f\u0631_siteconfig", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f1_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0645\u0627\u0644\u06cc_\u062f\u0631_siteconfig" }, { "relation": "contains", @@ -159478,9 +159509,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f2_entity_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc_financialbreakdown", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f2_entity_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc_financialbreakdown" }, { "relation": "contains", @@ -159488,9 +159519,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0645\u062d\u0627\u0633\u0628\u0647_commissionservice", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0645\u062d\u0627\u0633\u0628\u0647_commissionservice" }, { "relation": "contains", @@ -159498,9 +159529,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f4_\u0627\u062a\u0635\u0627\u0644_\u0628\u0647_paymentcontroller", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f4_\u0627\u062a\u0635\u0627\u0644_\u0628\u0647_paymentcontroller" }, { "relation": "contains", @@ -159508,9 +159539,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L284", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f5_representationrepository_find_int_id", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f5_representationrepository_find_int_id" }, { "relation": "contains", @@ -159518,9 +159549,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f6_endpoint\u0647\u0627\u06cc_\u06af\u0632\u0627\u0631\u0634_\u0645\u0627\u0644\u06cc_\u062f\u0631_adminapicontroller", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f6_endpoint\u0647\u0627\u06cc_\u06af\u0632\u0627\u0631\u0634_\u0645\u0627\u0644\u06cc_\u062f\u0631_adminapicontroller" }, { "relation": "contains", @@ -159528,9 +159559,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L297", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f7_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u06af\u0632\u0627\u0631\u0634", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f7_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u06af\u0632\u0627\u0631\u0634" }, { "relation": "contains", @@ -159538,9 +159569,9 @@ "source_file": ".claude/prompt/representation-commission-tax-engine.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_commission_tax_engine_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_commission_tax_engine_\u06f8_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0637\u0628\u0642_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u062a\u0627\u0631\u06cc\u062e\u0686\u0647_\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0645\u0627\u0644\u06cc\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_representation_commission_tax_engine_\u06f8_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0637\u0628\u0642_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u062a\u0627\u0631\u06cc\u062e\u0686\u0647_\u06cc_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0645\u0627\u0644\u06cc\u0627\u062a" }, { "relation": "contains", @@ -159548,9 +159579,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159558,9 +159589,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159568,9 +159599,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159578,9 +159609,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159588,9 +159619,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159598,9 +159629,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -159608,9 +159639,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159618,9 +159649,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u0628\u0631\u0627\u06cc_\u067e\u0648\u0631\u0633\u0627\u0646\u062a_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06af\u0632\u0627\u0631\u0634_\u062a\u0633\u0648\u06cc\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159628,9 +159659,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0627\u0644\u0641_buildstats_\u0628\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0641\u06cc\u0644\u062a\u0631_\u0646\u0645\u06cc_\u0634\u0648\u062f_\u0628\u0627\u06af", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0627\u0644\u0641_buildstats_\u0628\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0641\u06cc\u0644\u062a\u0631_\u0646\u0645\u06cc_\u0634\u0648\u062f_\u0628\u0627\u06af" }, { "relation": "contains", @@ -159638,9 +159669,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u0628_commissionservice_\u0628\u062f\u0648\u0646_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u0628_commissionservice_\u0628\u062f\u0648\u0646_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647" }, { "relation": "contains", @@ -159648,9 +159679,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u062c_booking_\u0641\u0639\u0644\u06cc_appointmentcontroller_book_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0631\u0633\u0627\u0644_\u0630\u062e\u06cc\u0631\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u062c_booking_\u0641\u0639\u0644\u06cc_appointmentcontroller_book_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0631\u0633\u0627\u0644_\u0630\u062e\u06cc\u0631\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -159658,9 +159689,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u062f_representationdashboard_\u0641\u0639\u0644\u06cc_dashboardpage_tsx_\u0641\u0642\u0637_\u06f4_\u06a9\u0627\u0631\u062a", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u062f_representationdashboard_\u0641\u0639\u0644\u06cc_dashboardpage_tsx_\u0641\u0642\u0637_\u06f4_\u06a9\u0627\u0631\u062a" }, { "relation": "contains", @@ -159668,9 +159699,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f1_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u0648\u06cc_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f1_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u0648\u06cc_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -159678,9 +159709,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f2_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u062f\u0631_commissionservice", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f2_\u06af\u0627\u0631\u062f_\u062f\u0627\u0645\u0646\u0647_\u062f\u0631_commissionservice" }, { "relation": "contains", @@ -159688,9 +159719,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f3_\u0627\u0635\u0644\u0627\u062d_buildstats_\u0628\u0647_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631\u0622\u0645\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f3_\u0627\u0635\u0644\u0627\u062d_buildstats_\u0628\u0647_scope_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631\u0622\u0645\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -159698,9 +159729,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f4_endpoint\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f4_endpoint\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159708,9 +159739,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f5_\u0645\u062a\u062f\u0647\u0627\u06cc_\u062c\u0645\u0639_\u0628\u0646\u062f\u06cc_\u062a\u0633\u0648\u06cc\u0647_\u062f\u0631_settlementrepository", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f5_\u0645\u062a\u062f\u0647\u0627\u06cc_\u062c\u0645\u0639_\u0628\u0646\u062f\u06cc_\u062a\u0633\u0648\u06cc\u0647_\u062f\u0631_settlementrepository" }, { "relation": "contains", @@ -159718,9 +159749,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f6_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_representationdashboard_dashboardpage_tsx", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f6_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_representationdashboard_dashboardpage_tsx" }, { "relation": "contains", @@ -159728,9 +159759,9 @@ "source_file": ".claude/prompt/representation-domain-guard-dashboard-settlement.md", "source_location": "L188", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_domain_guard_dashboard_settlement_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f7_\u0635\u0641\u062d\u0627\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_domain_guard_dashboard_settlement_\u06f7_\u0635\u0641\u062d\u0627\u062a_\u062c\u062f\u06cc\u062f_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -159738,9 +159769,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification", - "target": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647" }, { "relation": "contains", @@ -159748,9 +159779,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159758,9 +159789,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159768,9 +159799,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159778,9 +159809,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159788,9 +159819,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -159798,9 +159829,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159808,9 +159839,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0647\u0648\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06a9\u062f_\u0645\u0644\u06cc_\u0634\u0628\u0627_\u0628\u0627_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_s_api_ir_\u0648_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "target": "prompt_representation_identity_iban_verification_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159818,9 +159849,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_apiirservice", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u0627\u0633\u062a\u0639\u0644\u0627\u0645_apiirservice" }, { "relation": "contains", @@ -159828,9 +159859,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f2_\u067e\u0631\u0686\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u06a9\u062f_\u0645\u0644\u06cc_\u0631\u0648\u06cc_user", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f2_\u067e\u0631\u0686\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u06a9\u062f_\u0645\u0644\u06cc_\u0631\u0648\u06cc_user" }, { "relation": "contains", @@ -159838,9 +159869,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f3_\u0622\u0631\u0627\u06cc\u0647_\u06cc_\u0634\u0628\u0627\u0647\u0627\u06cc_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0631\u0648\u06cc_representation", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f3_\u0622\u0631\u0627\u06cc\u0647_\u06cc_\u0634\u0628\u0627\u0647\u0627\u06cc_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0631\u0648\u06cc_representation" }, { "relation": "contains", @@ -159848,9 +159879,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f4_\u0627\u06a9\u0634\u0646_\u0647\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631_representationactioncontroller", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f4_\u0627\u06a9\u0634\u0646_\u0647\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u062f\u0631_representationactioncontroller" }, { "relation": "contains", @@ -159858,9 +159889,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f5_\u0627\u0644\u0632\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f5_\u0627\u0644\u0632\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u062a\u0633\u0648\u06cc\u0647" }, { "relation": "contains", @@ -159868,9 +159899,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f6_\u0635\u0641\u062d\u0647_\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u067e\u0646\u0644_react", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f6_\u0635\u0641\u062d\u0647_\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u067e\u0646\u0644_react" }, { "relation": "contains", @@ -159878,9 +159909,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f7_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u0641\u0631\u0645_\u062a\u0633\u0648\u06cc\u0647", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f7_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0628\u0627_\u062f\u0631_\u0641\u0631\u0645_\u062a\u0633\u0648\u06cc\u0647" }, { "relation": "contains", @@ -159888,9 +159919,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f8_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0634\u0628\u0627_\u0648_\u062f\u06a9\u0645\u0647_\u062a\u06a9\u0645\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f8_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0634\u0628\u0627_\u0648_\u062f\u06a9\u0645\u0647_\u062a\u06a9\u0645\u06cc\u0644" }, { "relation": "contains", @@ -159898,9 +159929,9 @@ "source_file": ".claude/prompt/representation-identity-iban-verification.md", "source_location": "L239", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_representation_identity_iban_verification_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_representation_identity_iban_verification_\u06f9_migration_\u0648_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_representation_identity_iban_verification_\u06f9_migration_\u0648_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -159908,9 +159939,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments", - "target": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler" }, { "relation": "contains", @@ -159918,9 +159949,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -159928,9 +159959,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -159938,9 +159969,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -159948,9 +159979,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -159958,9 +159989,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -159968,9 +159999,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -159978,9 +160009,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0632\u0645\u0627\u0646_\u0628\u0646\u062f\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0627\u0646\u0642\u0636\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0634\u062f\u0647_\u0628\u0627_symfony_scheduler", - "target": "prompt_schedule_cancel_expired_appointments_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -159988,9 +160019,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_schedule_cancel_expired_appointments_command_\u0645\u0646\u0637\u0642_\u0627\u0646\u0642\u0636\u0627_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0645\u0634\u062a\u0631\u06a9_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_command_\u0645\u0646\u0637\u0642_\u0627\u0646\u0642\u0636\u0627_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0645\u0634\u062a\u0631\u06a9_\u0634\u0648\u062f" }, { "relation": "contains", @@ -159998,9 +160029,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_schedule_cancel_expired_appointments_messenger_yaml", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_messenger_yaml" }, { "relation": "contains", @@ -160008,9 +160039,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f1_\u0646\u0635\u0628_symfony_scheduler", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f1_\u0646\u0635\u0628_symfony_scheduler" }, { "relation": "contains", @@ -160018,9 +160049,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f2_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u0646\u0642\u0636\u0627_\u0628\u0647_\u06cc\u06a9_\u0633\u0631\u0648\u06cc\u0633_\u0645\u0634\u062a\u0631\u06a9", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f2_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u0646\u0642\u0636\u0627_\u0628\u0647_\u06cc\u06a9_\u0633\u0631\u0648\u06cc\u0633_\u0645\u0634\u062a\u0631\u06a9" }, { "relation": "contains", @@ -160028,9 +160059,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f3_\u067e\u06cc\u0627\u0645_\u0648_\u0647\u0646\u062f\u0644\u0631", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f3_\u067e\u06cc\u0627\u0645_\u0648_\u0647\u0646\u062f\u0644\u0631" }, { "relation": "contains", @@ -160038,9 +160069,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f4_scheduleprovider", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f4_scheduleprovider" }, { "relation": "contains", @@ -160048,9 +160079,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f5_transport_\u0648_routing_\u062f\u0631_messenger_yaml", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f5_transport_\u0648_routing_\u062f\u0631_messenger_yaml" }, { "relation": "contains", @@ -160058,9 +160089,9 @@ "source_file": ".claude/prompt/schedule-cancel-expired-appointments.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_schedule_cancel_expired_appointments_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_schedule_cancel_expired_appointments_\u06f6_\u0627\u062c\u0631\u0627\u06cc_worker_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_ddev", - "confidence_score": 1.0 + "target": "prompt_schedule_cancel_expired_appointments_\u06f6_\u0627\u062c\u0631\u0627\u06cc_worker_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_ddev" }, { "relation": "contains", @@ -160068,9 +160099,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope", - "target": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc" }, { "relation": "contains", @@ -160078,9 +160109,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -160088,9 +160119,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -160098,9 +160129,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -160108,9 +160139,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160118,9 +160149,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -160128,9 +160159,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0645\u0646\u0637\u0642_scope_\u0645\u0646\u0634\u06cc_\u062a\u0641\u06a9\u06cc\u06a9_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0627\u0632_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc", - "target": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -160138,9 +160169,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_secretary_context_scope_appointment_\u0641\u06cc\u0644\u062a\u0631_\u0641\u0642\u0637_\u06cc\u06a9_\u0631\u0627\u0628\u0637\u0647", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_appointment_\u0641\u06cc\u0644\u062a\u0631_\u0641\u0642\u0637_\u06cc\u06a9_\u0631\u0627\u0628\u0637\u0647" }, { "relation": "contains", @@ -160148,9 +160179,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_secretary_context_scope_auth_context_builder_scope_blind", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_auth_context_builder_scope_blind" }, { "relation": "contains", @@ -160158,9 +160189,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_secretary_context_scope_controller_\u0627\u06cc\u062c\u0627\u062f_\u0628\u062f\u0648\u0646_scope", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_controller_\u0627\u06cc\u062c\u0627\u062f_\u0628\u062f\u0648\u0646_scope" }, { "relation": "contains", @@ -160168,9 +160199,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_secretary_context_scope_entity_\u0628\u062f\u0648\u0646_scope", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_entity_\u0628\u062f\u0648\u0646_scope" }, { "relation": "contains", @@ -160178,9 +160209,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_secretary_context_scope_repository_scope_blind", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_repository_scope_blind" }, { "relation": "contains", @@ -160188,9 +160219,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f1_entity_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_owner_type_\u0648_clinic_id", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f1_entity_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_owner_type_\u0648_clinic_id" }, { "relation": "contains", @@ -160198,9 +160229,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f2_migration", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f2_migration" }, { "relation": "contains", @@ -160208,9 +160239,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L153", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f3_repository_query_\u0647\u0627\u06cc_scope_aware", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f3_repository_query_\u0647\u0627\u06cc_scope_aware" }, { "relation": "contains", @@ -160218,9 +160249,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L233", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f4_secretarycontroller_\u0627\u06cc\u062c\u0627\u062f_\u0628\u0627_scope", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f4_secretarycontroller_\u0627\u06cc\u062c\u0627\u062f_\u0628\u0627_scope" }, { "relation": "contains", @@ -160228,9 +160259,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L254", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f5_auth_context_builder_scope_aware", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f5_auth_context_builder_scope_aware" }, { "relation": "contains", @@ -160238,9 +160269,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f6_appointment_\u0648_dashboard_scope_aware", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f6_appointment_\u0648_dashboard_scope_aware" }, { "relation": "contains", @@ -160248,9 +160279,9 @@ "source_file": ".claude/prompt/secretary-context-scope.md", "source_location": "L307", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_secretary_context_scope_\u06f7_patientcontroller_scope_aware", - "confidence_score": 1.0 + "target": "prompt_secretary_context_scope_\u06f7_patientcontroller_scope_aware" }, { "relation": "contains", @@ -160258,9 +160289,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data", - "target": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631" }, { "relation": "contains", @@ -160268,9 +160299,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables" }, { "relation": "contains", @@ -160278,9 +160309,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u062e\u0631\u0648\u062c\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u062e\u0631\u0648\u062c\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -160288,9 +160319,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u062f\u0633\u062a\u0648\u0631_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u062f\u0633\u062a\u0648\u0631_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -160298,9 +160329,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -160308,9 +160339,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0633\u0627\u062e\u062a\u0627\u0631_weekly_schedules_setting_json", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0633\u0627\u062e\u062a\u0627\u0631_weekly_schedules_setting_json" }, { "relation": "contains", @@ -160318,9 +160349,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062c\u062f\u0627\u0648\u0644_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062c\u062f\u0627\u0648\u0644_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -160328,9 +160359,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L252", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -160338,9 +160369,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160348,9 +160379,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_seed_\u0648\u0627\u0642\u0639\u06cc_\u062f\u06cc\u062a\u0627_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631", - "target": "prompt_seed_realistic_data_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -160358,9 +160389,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "target": "prompt_seed_realistic_data_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627_provinces_id", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627_provinces_id" }, { "relation": "contains", @@ -160368,9 +160399,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "target": "prompt_seed_realistic_data_\u0628\u06cc\u0645\u0647_\u0647\u0627_insurances_id", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0628\u06cc\u0645\u0647_\u0647\u0627_insurances_id" }, { "relation": "contains", @@ -160378,9 +160409,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "target": "prompt_seed_realistic_data_\u062a\u062e\u0635\u0635_\u0647\u0627_specialties_id_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0628\u0631\u0627\u06cc_\u062a\u0648\u0632\u06cc\u0639_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u062a\u062e\u0635\u0635_\u0647\u0627_specialties_id_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0628\u0631\u0627\u06cc_\u062a\u0648\u0632\u06cc\u0639_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -160388,9 +160419,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "target": "prompt_seed_realistic_data_\u062e\u062f\u0645\u0627\u062a_\u067e\u0632\u0634\u06a9\u06cc_doctor_services_id_\u0646\u0645\u0648\u0646\u0647_\u0647\u0627\u06cc\u06cc_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062a\u062e\u0635\u0635", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u062e\u062f\u0645\u0627\u062a_\u067e\u0632\u0634\u06a9\u06cc_doctor_services_id_\u0646\u0645\u0648\u0646\u0647_\u0647\u0627\u06cc\u06cc_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062a\u062e\u0635\u0635" }, { "relation": "contains", @@ -160398,9 +160429,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_id\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_lookup_tables", - "target": "prompt_seed_realistic_data_\u0634\u0647\u0631\u0647\u0627_cities_id", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0634\u0647\u0631\u0647\u0627_cities_id" }, { "relation": "contains", @@ -160408,9 +160439,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php" }, { "relation": "contains", @@ -160418,9 +160449,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php", - "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_a_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_fk", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_a_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_fk" }, { "relation": "contains", @@ -160428,9 +160459,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php", - "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_b_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_b_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632" }, { "relation": "contains", @@ -160438,9 +160469,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php", - "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_c_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_c_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632" }, { "relation": "contains", @@ -160448,9 +160479,9 @@ "source_file": ".claude/prompt/seed-realistic-data.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_seed_realistic_data_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u0641\u0627\u06cc\u0644_seed_realistic_data_php", - "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_d_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631_bulk_generation", - "confidence_score": 1.0 + "target": "prompt_seed_realistic_data_\u0628\u062e\u0634_d_\u06f1\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u0634\u0647\u0631_bulk_generation" }, { "relation": "contains", @@ -160458,9 +160489,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage", - "target": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a" }, { "relation": "contains", @@ -160468,9 +160499,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -160478,9 +160509,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -160488,9 +160519,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160498,9 +160529,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -160508,9 +160539,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -160518,9 +160549,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -160528,9 +160559,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0645\u0634\u062e\u0635_\u06a9\u0631\u062f\u0646_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u062e\u062f\u0645\u062a", - "target": "prompt_service_insurance_coverage_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -160538,9 +160569,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_coverage_\u06f1_\u0637\u0631\u0627\u062d\u06cc_\u0641\u06cc\u0644\u062f_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u06f1_\u0637\u0631\u0627\u062d\u06cc_\u0641\u06cc\u0644\u062f_\u0634\u0645\u0648\u0644_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -160548,9 +160579,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_coverage_\u06f2_entity_migration", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u06f2_entity_migration" }, { "relation": "contains", @@ -160558,9 +160589,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_coverage_\u06f3_api", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u06f3_api" }, { "relation": "contains", @@ -160568,9 +160599,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_coverage_\u06f4_admin_frontend", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u06f4_admin_frontend" }, { "relation": "contains", @@ -160578,9 +160609,9 @@ "source_file": ".claude/prompt/service-insurance-coverage.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_coverage_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_service_insurance_coverage_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0627\u062a" }, { "relation": "contains", @@ -160588,9 +160619,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage", - "target": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a" }, { "relation": "contains", @@ -160598,9 +160629,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -160608,9 +160639,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -160618,9 +160649,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160628,9 +160659,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -160638,9 +160669,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -160648,9 +160679,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -160658,9 +160689,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0627\u062a\u0635\u0627\u0644_\u0628\u06cc\u0645\u0647_\u06cc_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0628\u0647_\u0633\u0627\u0645\u0627\u0646\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0648_\u0645\u0637\u0627\u0644\u0628\u0627\u062a", - "target": "prompt_service_insurance_per_insurer_coverage_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -160668,9 +160699,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_service_insurance_per_insurer_coverage_endpoint_\u0645\u0648\u062c\u0648\u062f_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u067e\u0648\u0634\u0634_backend_payload_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_endpoint_\u0645\u0648\u062c\u0648\u062f_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u067e\u0648\u0634\u0634_backend_payload_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -160678,9 +160709,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_service_insurance_per_insurer_coverage_\u0641\u0631\u0645_\u0633\u0631\u0648\u06cc\u0633_frontend_\u0641\u0642\u0637_\u062f\u0648_\u0641\u06cc\u0644\u062f_\u0633\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0641\u0631\u0645_\u0633\u0631\u0648\u06cc\u0633_frontend_\u0641\u0642\u0637_\u062f\u0648_\u0641\u06cc\u0644\u062f_\u0633\u0627\u062f\u0647" }, { "relation": "contains", @@ -160688,9 +160719,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_service_insurance_per_insurer_coverage_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u067e\u0648\u0634\u0634_\u0642\u0627\u0639\u062f\u0647_\u0627\u06cc_\u06a9\u0647_\u0645\u062d\u0627\u0633\u0628\u0647_\u0631\u0627_\u062a\u0639\u06cc\u06cc\u0646_\u0645\u06cc_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u067e\u0648\u0634\u0634_\u0642\u0627\u0639\u062f\u0647_\u0627\u06cc_\u06a9\u0647_\u0645\u062d\u0627\u0633\u0628\u0647_\u0631\u0627_\u062a\u0639\u06cc\u06cc\u0646_\u0645\u06cc_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -160698,9 +160729,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_per_insurer_coverage_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06af\u0631_\u0628\u0647_modal_\u0633\u0631\u0648\u06cc\u0633_frontend", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u067e\u0648\u0634\u0634_\u0628\u06cc\u0645\u0647_\u0628\u0647_\u0627\u0632\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06af\u0631_\u0628\u0647_modal_\u0633\u0631\u0648\u06cc\u0633_frontend" }, { "relation": "contains", @@ -160708,9 +160739,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_per_insurer_coverage_\u06f2_\u0634\u0641\u0627\u0641_\u0633\u0627\u0632\u06cc_\u0646\u0642\u0634_\u062f\u0648_\u0641\u06cc\u0644\u062f_\u0633\u0627\u062f\u0647_\u06cc_\u0642\u062f\u06cc\u0645\u06cc", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u06f2_\u0634\u0641\u0627\u0641_\u0633\u0627\u0632\u06cc_\u0646\u0642\u0634_\u062f\u0648_\u0641\u06cc\u0644\u062f_\u0633\u0627\u062f\u0647_\u06cc_\u0642\u062f\u06cc\u0645\u06cc" }, { "relation": "contains", @@ -160718,9 +160749,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_per_insurer_coverage_\u06f3_\u062d\u0644_\u0645\u0634\u06a9\u0644_service_item_id_\u062f\u0631_\u0628\u0631\u0627\u0628\u0631_uuid_backend", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u06f3_\u062d\u0644_\u0645\u0634\u06a9\u0644_service_item_id_\u062f\u0631_\u0628\u0631\u0627\u0628\u0631_uuid_backend" }, { "relation": "contains", @@ -160728,9 +160759,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_per_insurer_coverage_\u06f4_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u062c\u0631\u06cc\u0627\u0646_\u0628\u0647_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u06f4_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u062c\u0631\u06cc\u0627\u0646_\u0628\u0647_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -160738,9 +160769,9 @@ "source_file": ".claude/prompt/service-insurance-per-insurer-coverage.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_service_insurance_per_insurer_coverage_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_service_insurance_per_insurer_coverage_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_service_insurance_per_insurer_coverage_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -160748,9 +160779,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags", - "target": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc" }, { "relation": "contains", @@ -160758,9 +160789,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -160768,9 +160799,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -160778,9 +160809,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160788,9 +160819,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -160798,9 +160829,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -160808,9 +160839,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -160818,9 +160849,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0648_\u0644\u06cc\u0633\u062a_\u06a9\u0627\u0645\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0627\u0631\u0633\u0627\u0644\u06cc", - "target": "prompt_sms_log_tags_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -160828,9 +160859,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_tag_\u0628\u0647_smslog_migration", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_tag_\u0628\u0647_smslog_migration" }, { "relation": "contains", @@ -160838,9 +160869,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f2_\u0639\u0628\u0648\u0631_tag_\u062f\u0631_dto_\u0648_smsservice", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f2_\u0639\u0628\u0648\u0631_tag_\u062f\u0631_dto_\u0648_smsservice" }, { "relation": "contains", @@ -160848,9 +160879,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f3_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0647\u0645\u0647_\u06cc_\u0646\u0642\u0627\u0637_\u0627\u0631\u0633\u0627\u0644", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f3_\u062a\u06af_\u06af\u0630\u0627\u0631\u06cc_\u0647\u0645\u0647_\u06cc_\u0646\u0642\u0627\u0637_\u0627\u0631\u0633\u0627\u0644" }, { "relation": "contains", @@ -160858,9 +160889,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f4_admin_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_tag_\u0628\u0647_\u062e\u0631\u0648\u062c\u06cc_\u0641\u06cc\u0644\u062a\u0631", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f4_admin_endpoint_\u0627\u0641\u0632\u0648\u062f\u0646_tag_\u0628\u0647_\u062e\u0631\u0648\u062c\u06cc_\u0641\u06cc\u0644\u062a\u0631" }, { "relation": "contains", @@ -160868,9 +160899,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f5_admin_spa_\u0633\u062a\u0648\u0646_\u062a\u06af_\u0641\u06cc\u0644\u062a\u0631_\u062f\u0631_\u062a\u0628_\u0644\u0627\u06af_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f5_admin_spa_\u0633\u062a\u0648\u0646_\u062a\u06af_\u0641\u06cc\u0644\u062a\u0631_\u062f\u0631_\u062a\u0628_\u0644\u0627\u06af_\u0647\u0627" }, { "relation": "contains", @@ -160878,9 +160909,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f6_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u06a9\u0631\u062f\u0646_\u0645\u062a\u0646_\u0647\u0645\u0647_\u06cc_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f6_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u06a9\u0631\u062f\u0646_\u0645\u062a\u0646_\u0647\u0645\u0647_\u06cc_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627" }, { "relation": "contains", @@ -160888,9 +160919,9 @@ "source_file": ".claude/prompt/sms-log-tags.md", "source_location": "L197", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_log_tags_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sms_log_tags_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_sms_log_tags_\u06f7_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -160898,9 +160929,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login", - "target": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631" }, { "relation": "contains", @@ -160908,9 +160939,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_sms_login_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -160918,9 +160949,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -160928,9 +160959,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L255", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062a\u0633\u062a_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647" }, { "relation": "contains", @@ -160938,9 +160969,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u0686\u06cc\u0632_\u0628\u062e\u0648\u0627\u0646", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u0686\u06cc\u0632_\u0628\u062e\u0648\u0627\u0646" }, { "relation": "contains", @@ -160948,9 +160979,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx" }, { "relation": "contains", @@ -160958,9 +160989,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -160968,9 +160999,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648\u0631\u0648\u062f_\u0628\u0627_\u067e\u06cc\u0627\u0645\u06a9_\u0648_\u0641\u0631\u0627\u0645\u0648\u0634\u06cc_\u0631\u0645\u0632_\u0639\u0628\u0648\u0631", - "target": "prompt_sms_login_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u0647\u062f\u0641" }, { "relation": "contains", @@ -160978,9 +161009,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u0686\u06cc\u0632_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645", - "confidence_score": 1.0 + "target": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645" }, { "relation": "contains", @@ -160988,9 +161019,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0632\u0645\u06cc\u0646\u0647_\u0641\u0646\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0645\u0647\u0645_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u0686\u06cc\u0632_\u0628\u062e\u0648\u0627\u0646", - "target": "prompt_sms_login_authstore", - "confidence_score": 1.0 + "target": "prompt_sms_login_authstore" }, { "relation": "contains", @@ -160998,9 +161029,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645", - "target": "prompt_sms_login_post_api_v1_user_login_public_passwordauthenticator", - "confidence_score": 1.0 + "target": "prompt_sms_login_post_api_v1_user_login_public_passwordauthenticator" }, { "relation": "contains", @@ -161008,9 +161039,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645", - "target": "prompt_sms_login_post_api_v1_user_send_code_public", - "confidence_score": 1.0 + "target": "prompt_sms_login_post_api_v1_user_send_code_public" }, { "relation": "contains", @@ -161018,9 +161049,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645", - "target": "prompt_sms_login_post_api_v1_user_verify_code_public", - "confidence_score": 1.0 + "target": "prompt_sms_login_post_api_v1_user_verify_code_public" }, { "relation": "contains", @@ -161028,9 +161059,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u0633\u062a\u0642\u06cc\u0645", - "target": "prompt_sms_login_post_oauth_token_public", - "confidence_score": 1.0 + "target": "prompt_sms_login_post_oauth_token_public" }, { "relation": "contains", @@ -161038,9 +161069,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f", - "target": "prompt_sms_login_\u06f1_post_api_v1_user_otp_login_public", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u06f1_post_api_v1_user_otp_login_public" }, { "relation": "contains", @@ -161048,9 +161079,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f", - "target": "prompt_sms_login_\u06f2_post_api_v1_user_reset_password_public", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u06f2_post_api_v1_user_reset_password_public" }, { "relation": "contains", @@ -161058,9 +161089,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_api_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0633\u0627\u062e\u062a\u0647_\u0634\u0648\u0646\u062f", - "target": "prompt_sms_login_\u06f3_security_yaml_public_\u06a9\u0631\u062f\u0646_endpoint_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u06f3_security_yaml_public_\u06a9\u0631\u062f\u0646_endpoint_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -161068,9 +161099,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx", - "target": "prompt_sms_login_state_management_\u0641\u0642\u0637_usestate_\u0646\u0647_tanstack_query", - "confidence_score": 1.0 + "target": "prompt_sms_login_state_management_\u0641\u0642\u0637_usestate_\u0646\u0647_tanstack_query" }, { "relation": "contains", @@ -161078,9 +161109,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L193", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx", - "target": "prompt_sms_login_ui", - "confidence_score": 1.0 + "target": "prompt_sms_login_ui" }, { "relation": "contains", @@ -161088,9 +161119,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx", - "target": "prompt_sms_login_\u0627\u0635\u0648\u0644_ui", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u0627\u0635\u0648\u0644_ui" }, { "relation": "contains", @@ -161098,9 +161129,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u0642\u0627\u0628\u0644\u06cc\u062a_frontend_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_assets_admin_pages_loginpage_tsx", - "target": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api" }, { "relation": "contains", @@ -161108,9 +161139,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api", - "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_forgot", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_forgot" }, { "relation": "contains", @@ -161118,9 +161149,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api", - "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_password", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_password" }, { "relation": "contains", @@ -161128,9 +161159,9 @@ "source_file": ".claude/prompt/sms-login.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api", - "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_sms", - "confidence_score": 1.0 + "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_sms" }, { "relation": "contains", @@ -161138,9 +161169,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts", - "target": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631" }, { "relation": "contains", @@ -161148,9 +161179,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161158,9 +161189,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161168,9 +161199,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -161178,9 +161209,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161188,9 +161219,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -161198,9 +161229,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161208,9 +161239,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u0628\u0647_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u0647\u0631", - "target": "prompt_specialty_doctor_counts_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -161218,9 +161249,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_specialty_doctor_counts_\u06f1_\u0645\u062a\u062f_\u0634\u0645\u0627\u0631\u0634_\u062f\u0631_specialtyrepository", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u06f1_\u0645\u062a\u062f_\u0634\u0645\u0627\u0631\u0634_\u062f\u0631_specialtyrepository" }, { "relation": "contains", @@ -161228,9 +161259,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_specialty_doctor_counts_\u06f2_endpoint_doctorcounts_\u062f\u0631_specialtycontroller", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u06f2_endpoint_doctorcounts_\u062f\u0631_specialtycontroller" }, { "relation": "contains", @@ -161238,9 +161269,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_specialty_doctor_counts_\u06f3_\u0639\u0645\u0648\u0645\u06cc_\u06a9\u0631\u062f\u0646_\u0645\u0633\u06cc\u0631_\u062f\u0631_security_yaml", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u06f3_\u0639\u0645\u0648\u0645\u06cc_\u06a9\u0631\u062f\u0646_\u0645\u0633\u06cc\u0631_\u062f\u0631_security_yaml" }, { "relation": "contains", @@ -161248,9 +161279,9 @@ "source_file": ".claude/prompt/specialty-doctor-counts.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_specialty_doctor_counts_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_specialty_doctor_counts_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_specialty_md", - "confidence_score": 1.0 + "target": "prompt_specialty_doctor_counts_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_docs_api_specialty_md" }, { "relation": "contains", @@ -161258,9 +161289,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui", - "target": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate" }, { "relation": "contains", @@ -161268,9 +161299,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -161278,9 +161309,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161288,9 +161319,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161298,9 +161329,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -161308,9 +161339,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L405", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161318,9 +161349,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -161328,9 +161359,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0627\u0639\u0645\u0627\u0644_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u062f\u0631_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_frontend_gate", - "target": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161338,9 +161369,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "target": "prompt_subscription_gate_ui_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u062d\u062f\u0648\u062f\u0634\u062f\u0647_\u062a\u0648\u0633\u0637_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u062d\u062f\u0648\u062f\u0634\u062f\u0647_\u062a\u0648\u0633\u0637_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -161348,9 +161379,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_subscription_gate_ui_backend_endpoint_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_backend_endpoint_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -161358,9 +161389,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_subscription_gate_ui_frontend_app_tsx", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_frontend_app_tsx" }, { "relation": "contains", @@ -161368,9 +161399,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_subscription_gate_ui_frontend_authstore", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_frontend_authstore" }, { "relation": "contains", @@ -161378,9 +161409,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", - "target": "prompt_subscription_gate_ui_frontend_sidebar", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_frontend_sidebar" }, { "relation": "contains", @@ -161388,9 +161419,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f1_backend_\u0645\u0646\u0634\u06cc_\u0645\u06cc_\u062a\u0648\u0627\u0646\u062f_\u0627\u0634\u062a\u0631\u0627\u06a9_entity_\u062e\u0648\u062f_\u0631\u0627_\u0628\u0628\u06cc\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f1_backend_\u0645\u0646\u0634\u06cc_\u0645\u06cc_\u062a\u0648\u0627\u0646\u062f_\u0627\u0634\u062a\u0631\u0627\u06a9_entity_\u062e\u0648\u062f_\u0631\u0627_\u0628\u0628\u06cc\u0646\u062f" }, { "relation": "contains", @@ -161398,9 +161429,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f2_frontend_hook_\u0645\u0634\u062a\u0631\u06a9_usesubscription", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f2_frontend_hook_\u0645\u0634\u062a\u0631\u06a9_usesubscription" }, { "relation": "contains", @@ -161408,9 +161439,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f3_frontend_sidebar_\u0628\u0627_\u0642\u0641\u0644_feature", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f3_frontend_sidebar_\u0628\u0627_\u0642\u0641\u0644_feature" }, { "relation": "contains", @@ -161418,9 +161449,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f4_frontend_featuregate_component", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f4_frontend_featuregate_component" }, { "relation": "contains", @@ -161428,9 +161459,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L344", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f5_frontend_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_featuregate_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f5_frontend_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_featuregate_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a" }, { "relation": "contains", @@ -161438,9 +161469,9 @@ "source_file": ".claude/prompt/subscription-gate-ui.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_subscription_gate_ui_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_subscription_gate_ui_\u06f6_frontend_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062a\u0639\u062f\u0627\u062f_\u0645\u0646\u0634\u06cc_\u062f\u0631_mysecretariespage", - "confidence_score": 1.0 + "target": "prompt_subscription_gate_ui_\u06f6_frontend_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062a\u0639\u062f\u0627\u062f_\u0645\u0646\u0634\u06cc_\u062f\u0631_mysecretariespage" }, { "relation": "contains", @@ -161448,9 +161479,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile", - "target": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -161458,9 +161489,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161468,9 +161499,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161478,9 +161509,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -161488,9 +161519,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161498,9 +161529,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -161508,9 +161539,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161518,9 +161549,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_\u0646\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631_user_real_name_\u0647\u0646\u06af\u0627\u0645_\u062a\u06a9\u0645\u06cc\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "target": "prompt_sync_user_realname_from_profile_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -161528,9 +161559,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sync_user_realname_from_profile_\u06f1_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_user_realname_\u062f\u0631_hydrate", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u06f1_\u0647\u0645\u06af\u0627\u0645_\u0633\u0627\u0632\u06cc_user_realname_\u062f\u0631_hydrate" }, { "relation": "contains", @@ -161538,9 +161569,9 @@ "source_file": ".claude/prompt/sync-user-realname-from-profile.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_sync_user_realname_from_profile_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_sync_user_realname_from_profile_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_flush_\u0634\u062f\u0646_\u062a\u063a\u06cc\u06cc\u0631_user", - "confidence_score": 1.0 + "target": "prompt_sync_user_realname_from_profile_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_flush_\u0634\u062f\u0646_\u062a\u063a\u06cc\u06cc\u0631_user" }, { "relation": "contains", @@ -161548,9 +161579,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish", - "target": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f" }, { "relation": "contains", @@ -161558,9 +161589,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_css_variables_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u062a\u0641\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_css_variables_\u0645\u0648\u062c\u0648\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u062a\u0641\u0627\u062f\u0647" }, { "relation": "contains", @@ -161568,9 +161599,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161578,9 +161609,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161588,9 +161619,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647" }, { "relation": "contains", @@ -161598,9 +161629,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161608,9 +161639,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_ui_ux_\u0648_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644\u0627\u062a_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f", - "target": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161618,9 +161649,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "target": "prompt_ui_darkmode_polish_\u06f1_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_\u0631\u0646\u06af_\u0647\u0627\u06cc_hardcoded_\u0628\u062d\u0631\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f1_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_\u0631\u0646\u06af_\u0647\u0627\u06cc_hardcoded_\u0628\u062d\u0631\u0627\u0646\u06cc" }, { "relation": "contains", @@ -161628,9 +161659,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "target": "prompt_ui_darkmode_polish_\u06f2_ux_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f2_ux_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647" }, { "relation": "contains", @@ -161638,9 +161669,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f1_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_appointmentspage_tsx", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f1_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_appointmentspage_tsx" }, { "relation": "contains", @@ -161648,9 +161679,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f2_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_subscriptionpage_tsx", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f2_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_subscriptionpage_tsx" }, { "relation": "contains", @@ -161658,9 +161689,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f3_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_settingspage_tsx", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f3_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_settingspage_tsx" }, { "relation": "contains", @@ -161668,9 +161699,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f4_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_loginpage_tsx", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f4_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_loginpage_tsx" }, { "relation": "contains", @@ -161678,9 +161709,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f5_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_smswalletpage_tsx", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f5_\u0631\u0641\u0639_\u062f\u0627\u0631\u06a9_\u0645\u0648\u062f_smswalletpage_tsx" }, { "relation": "contains", @@ -161688,9 +161719,9 @@ "source_file": ".claude/prompt/ui-darkmode-polish.md", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_darkmode_polish_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_darkmode_polish_\u06f6_\u0628\u0631\u0631\u0633\u06cc_\u0648_build", - "confidence_score": 1.0 + "target": "prompt_ui_darkmode_polish_\u06f6_\u0628\u0631\u0631\u0633\u06cc_\u0648_build" }, { "relation": "contains", @@ -161698,9 +161729,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign", - "target": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648" }, { "relation": "contains", @@ -161708,9 +161739,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161718,9 +161749,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0633\u06cc\u0633\u062a\u0645_css_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0633\u06cc\u0633\u062a\u0645_css_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -161728,9 +161759,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161738,9 +161769,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L384", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161748,9 +161779,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647" }, { "relation": "contains", @@ -161758,9 +161789,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_ui_ux_\u067e\u0646\u062c_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648", - "target": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161768,9 +161799,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "target": "prompt_ui_ux_pages_redesign_\u06f1_mypatientspage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f1_mypatientspage" }, { "relation": "contains", @@ -161778,9 +161809,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "target": "prompt_ui_ux_pages_redesign_\u06f2_staffpage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f2_staffpage" }, { "relation": "contains", @@ -161788,9 +161819,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "target": "prompt_ui_ux_pages_redesign_\u06f3_mysecretariespage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f3_mysecretariespage" }, { "relation": "contains", @@ -161798,9 +161829,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "target": "prompt_ui_ux_pages_redesign_\u06f4_clinicservicespage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f4_clinicservicespage" }, { "relation": "contains", @@ -161808,9 +161839,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0647\u0631_\u0635\u0641\u062d\u0647", - "target": "prompt_ui_ux_pages_redesign_\u06f5_smswalletpage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f5_smswalletpage" }, { "relation": "contains", @@ -161818,9 +161849,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_ux_pages_redesign_\u06f1_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_mypatientspage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f1_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_mypatientspage" }, { "relation": "contains", @@ -161828,9 +161859,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L193", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_ux_pages_redesign_\u06f2_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_staffpage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f2_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_staffpage" }, { "relation": "contains", @@ -161838,9 +161869,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L221", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_ux_pages_redesign_\u06f3_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_mysecretariespage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f3_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_mysecretariespage" }, { "relation": "contains", @@ -161848,9 +161879,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L268", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_ux_pages_redesign_\u06f4_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_clinicservicespage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f4_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_clinicservicespage" }, { "relation": "contains", @@ -161858,9 +161889,9 @@ "source_file": ".claude/prompt/ui-ux-pages-redesign.md", "source_location": "L319", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_ui_ux_pages_redesign_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_ui_ux_pages_redesign_\u06f5_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_smswalletpage", - "confidence_score": 1.0 + "target": "prompt_ui_ux_pages_redesign_\u06f5_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_smswalletpage" }, { "relation": "contains", @@ -161868,9 +161899,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647" }, { "relation": "contains", @@ -161878,9 +161909,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0632\u0645\u06cc\u0646\u0647", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0632\u0645\u06cc\u0646\u0647" }, { "relation": "contains", @@ -161888,9 +161919,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -161898,9 +161929,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641" }, { "relation": "contains", @@ -161908,9 +161939,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -161918,9 +161949,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -161928,9 +161959,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641" }, { "relation": "contains", @@ -161938,9 +161969,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0631\u0641\u0639_404_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_resolve_\u0628\u0627_user_uuid_\u0648_\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062a\u0627\u0632\u0647", - "target": "prompt_user_profile_resolve_by_user_uuid_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -161948,9 +161979,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_user_profile_resolve_by_user_uuid_repository\u0647\u0627", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_repository\u0647\u0627" }, { "relation": "contains", @@ -161958,9 +161989,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_user_profile_resolve_by_user_uuid_userprofile_uuid_\u0645\u0633\u062a\u0642\u0644_\u0627\u0632_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_userprofile_uuid_\u0645\u0633\u062a\u0642\u0644_\u0627\u0632_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -161968,9 +161999,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "target": "prompt_user_profile_resolve_by_user_uuid_userprofilecontroller_show_\u0641\u0642\u0637_\u0628\u0627_profile_uuid", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_userprofilecontroller_show_\u0641\u0642\u0637_\u0628\u0627_profile_uuid" }, { "relation": "contains", @@ -161978,9 +162009,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_user_profile_resolve_by_user_uuid_\u06f1_\u062a\u0632\u0631\u06cc\u0642_userrepository_\u0628\u0647_\u06a9\u0646\u062a\u0631\u0644\u0631", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u06f1_\u062a\u0632\u0631\u06cc\u0642_userrepository_\u0628\u0647_\u06a9\u0646\u062a\u0631\u0644\u0631" }, { "relation": "contains", @@ -161988,9 +162019,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_user_profile_resolve_by_user_uuid_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_show_resolve_\u0628\u0627_profile_uuid_\u06cc\u0627_user_uuid_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_show_resolve_\u0628\u0627_profile_uuid_\u06cc\u0627_user_uuid_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062e\u0627\u0644\u06cc_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -161998,9 +162029,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_user_profile_resolve_by_user_uuid_\u06f3_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_patch_\u0647\u0645_\u0628\u0627_user_uuid_\u06a9\u0627\u0631_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u06f3_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_patch_\u0647\u0645_\u0628\u0627_user_uuid_\u06a9\u0627\u0631_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -162008,9 +162039,9 @@ "source_file": ".claude/prompt/user-profile-resolve-by-user-uuid.md", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_user_profile_resolve_by_user_uuid_\u0648\u0638\u0627\u06cc\u0641", - "target": "prompt_user_profile_resolve_by_user_uuid_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prompt_user_profile_resolve_by_user_uuid_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -162018,9 +162049,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill", - "target": "prompt_writer_skill_\u0645\u062b\u0627\u0644", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u062b\u0627\u0644" }, { "relation": "contains", @@ -162028,9 +162059,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill", - "target": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -162038,9 +162069,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill", - "target": "prompt_writer_skill_\u0646\u062d\u0648\u0647_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0648\u0631\u0648\u062f\u06cc", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0646\u062d\u0648\u0647_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0648\u0631\u0648\u062f\u06cc" }, { "relation": "contains", @@ -162048,9 +162079,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "target": "prompt_writer_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0645\u062d\u062a\u0648\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0645\u062d\u062a\u0648\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a" }, { "relation": "contains", @@ -162058,9 +162089,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u062f\u0631\u06a9_\u0645\u0648\u0636\u0648\u0639", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f1_\u062f\u0631\u06a9_\u0645\u0648\u0636\u0648\u0639" }, { "relation": "contains", @@ -162068,9 +162099,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u0627\u0645_\u06af\u0630\u0627\u0631\u06cc_\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u0627\u0645_\u06af\u0630\u0627\u0631\u06cc_\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -162078,9 +162109,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f3_\u0633\u0627\u062e\u062a_\u0641\u0627\u06cc\u0644_\u067e\u0631\u0627\u0645\u067e\u062a", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f3_\u0633\u0627\u062e\u062a_\u0641\u0627\u06cc\u0644_\u067e\u0631\u0627\u0645\u067e\u062a" }, { "relation": "contains", @@ -162088,9 +162119,9 @@ "source_file": ".claude/skills/prompt-writer/SKILL.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "prompt_writer_skill_\u0645\u0631\u0627\u062d\u0644_\u0627\u062c\u0631\u0627", - "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f4_\u062e\u0631\u0648\u062c\u06cc_\u0646\u0647\u0627\u06cc\u06cc", - "confidence_score": 1.0 + "target": "prompt_writer_skill_\u0645\u0631\u062d\u0644\u0647_\u06f4_\u062e\u0631\u0648\u062c\u06cc_\u0646\u0647\u0627\u06cc\u06cc" }, { "relation": "contains", @@ -162098,9 +162129,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a" }, { "relation": "contains", @@ -162108,9 +162139,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u062d\u0644\u06cc\u0644_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648_\u0633\u0627\u062e\u062a_todo", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u062d\u0644\u06cc\u0644_\u067e\u0631\u0627\u0645\u067e\u062a_\u0648_\u0633\u0627\u062e\u062a_todo" }, { "relation": "contains", @@ -162118,9 +162149,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -162128,9 +162159,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062e\u0627\u0635_\u0627\u06cc\u0646_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062e\u0627\u0635_\u0627\u06cc\u0646_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -162138,9 +162169,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0645\u062b\u0627\u0644_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u062b\u0627\u0644_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -162148,9 +162179,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill", - "target": "run_prompt_skill_\u0646\u062d\u0648\u0647_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0648\u0631\u0648\u062f\u06cc", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0646\u062d\u0648\u0647_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0648\u0631\u0648\u062f\u06cc" }, { "relation": "contains", @@ -162158,9 +162189,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "target": "run_prompt_skill_\u06f1_todo_\u0633\u062a\u0648\u0646_\u0641\u0642\u0631\u0627\u062a_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u06f1_todo_\u0633\u062a\u0648\u0646_\u0641\u0642\u0631\u0627\u062a_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -162168,9 +162199,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "target": "run_prompt_skill_\u06f2_\u06cc\u06a9_\u0642\u0627\u0628\u0644\u06cc\u062a_\u062f\u0631_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u06f2_\u06cc\u06a9_\u0642\u0627\u0628\u0644\u06cc\u062a_\u062f\u0631_\u0647\u0631_\u0645\u0631\u062d\u0644\u0647" }, { "relation": "contains", @@ -162178,9 +162209,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "target": "run_prompt_skill_\u06f3_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u06f3_\u062a\u0631\u062a\u06cc\u0628_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a" }, { "relation": "contains", @@ -162188,9 +162219,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "target": "run_prompt_skill_\u06f4_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u06f4_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -162198,9 +162229,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u0627\u062c\u0631\u0627_\u0627\u062c\u0628\u0627\u0631\u06cc_\u0647\u06cc\u0686_\u0627\u0633\u062a\u062b\u0646\u0627\u06cc\u06cc_\u0646\u062f\u0627\u0631\u062f", - "target": "run_prompt_skill_\u06f5_\u0627\u0635\u0648\u0644_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u06f5_\u0627\u0635\u0648\u0644_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc" }, { "relation": "contains", @@ -162208,9 +162239,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_1_\u062a\u062d\u0644\u06cc\u0644", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_1_\u062a\u062d\u0644\u06cc\u0644" }, { "relation": "contains", @@ -162218,9 +162249,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_2_\u0637\u0631\u0627\u062d\u06cc", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_2_\u0637\u0631\u0627\u062d\u06cc" }, { "relation": "contains", @@ -162228,9 +162259,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_3_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_3_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -162238,9 +162269,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_4_\u062a\u0633\u062a", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_4_\u062a\u0633\u062a" }, { "relation": "contains", @@ -162248,9 +162279,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_5_\u0631\u0641\u0639_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_5_\u0631\u0641\u0639_\u062e\u0637\u0627" }, { "relation": "contains", @@ -162258,9 +162289,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_6_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_6_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -162268,9 +162299,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0631\u0648\u0646\u062f_\u0627\u062c\u0631\u0627\u06cc_\u0647\u0631_\u0642\u0627\u0628\u0644\u06cc\u062a", - "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_7_todo_\u06af\u0632\u0627\u0631\u0634", - "confidence_score": 1.0 + "target": "run_prompt_skill_\u0645\u0631\u062d\u0644\u0647_7_todo_\u06af\u0632\u0627\u0631\u0634" }, { "relation": "contains", @@ -162278,9 +162309,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062e\u0627\u0635_\u0627\u06cc\u0646_\u067e\u0631\u0648\u0698\u0647", - "target": "run_prompt_skill_backend", - "confidence_score": 1.0 + "target": "run_prompt_skill_backend" }, { "relation": "contains", @@ -162288,9 +162319,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062e\u0627\u0635_\u0627\u06cc\u0646_\u067e\u0631\u0648\u0698\u0647", - "target": "run_prompt_skill_css_ui", - "confidence_score": 1.0 + "target": "run_prompt_skill_css_ui" }, { "relation": "contains", @@ -162298,9 +162329,9 @@ "source_file": ".claude/skills/run-prompt/SKILL.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "run_prompt_skill_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062e\u0627\u0635_\u0627\u06cc\u0646_\u067e\u0631\u0648\u0698\u0647", - "target": "run_prompt_skill_frontend", - "confidence_score": 1.0 + "target": "run_prompt_skill_frontend" }, { "relation": "contains", @@ -162308,9 +162339,9 @@ "source_file": "CLAUDE.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "claude", - "target": "claude_claude_md", - "confidence_score": 1.0 + "target": "claude_claude_md" }, { "relation": "contains", @@ -162318,9 +162349,9 @@ "source_file": "CLAUDE.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_claude_md", - "target": "claude_architecture", - "confidence_score": 1.0 + "target": "claude_architecture" }, { "relation": "contains", @@ -162328,9 +162359,9 @@ "source_file": "CLAUDE.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_claude_md", - "target": "claude_commands", - "confidence_score": 1.0 + "target": "claude_commands" }, { "relation": "contains", @@ -162338,9 +162369,9 @@ "source_file": "CLAUDE.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_claude_md", - "target": "claude_key_patterns", - "confidence_score": 1.0 + "target": "claude_key_patterns" }, { "relation": "contains", @@ -162348,9 +162379,9 @@ "source_file": "CLAUDE.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_claude_md", - "target": "claude_project_overview", - "confidence_score": 1.0 + "target": "claude_project_overview" }, { "relation": "contains", @@ -162358,9 +162389,9 @@ "source_file": "CLAUDE.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_claude_md", - "target": "claude_standing_rule_api_documentation", - "confidence_score": 1.0 + "target": "claude_standing_rule_api_documentation" }, { "relation": "contains", @@ -162368,9 +162399,9 @@ "source_file": "CLAUDE.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_commands", - "target": "claude_backend_php_symfony", - "confidence_score": 1.0 + "target": "claude_backend_php_symfony" }, { "relation": "contains", @@ -162378,9 +162409,9 @@ "source_file": "CLAUDE.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_commands", - "target": "claude_first_time_setup", - "confidence_score": 1.0 + "target": "claude_first_time_setup" }, { "relation": "contains", @@ -162388,9 +162419,9 @@ "source_file": "CLAUDE.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_commands", - "target": "claude_frontend_react_typescript", - "confidence_score": 1.0 + "target": "claude_frontend_react_typescript" }, { "relation": "contains", @@ -162398,9 +162429,9 @@ "source_file": "CLAUDE.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_architecture", - "target": "claude_auth", - "confidence_score": 1.0 + "target": "claude_auth" }, { "relation": "contains", @@ -162408,9 +162439,9 @@ "source_file": "CLAUDE.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_architecture", - "target": "claude_backend_src", - "confidence_score": 1.0 + "target": "claude_backend_src" }, { "relation": "contains", @@ -162418,9 +162449,9 @@ "source_file": "CLAUDE.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_architecture", - "target": "claude_category_bundle_system", - "confidence_score": 1.0 + "target": "claude_category_bundle_system" }, { "relation": "contains", @@ -162428,9 +162459,9 @@ "source_file": "CLAUDE.md", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_architecture", - "target": "claude_database", - "confidence_score": 1.0 + "target": "claude_database" }, { "relation": "contains", @@ -162438,9 +162469,9 @@ "source_file": "CLAUDE.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "claude_architecture", - "target": "claude_frontend_assets_admin", - "confidence_score": 1.0 + "target": "claude_frontend_assets_admin" }, { "relation": "contains", @@ -162448,9 +162479,9 @@ "source_file": "TEST_USERS.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users", - "target": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "confidence_score": 1.0 + "target": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc" }, { "relation": "contains", @@ -162458,9 +162489,9 @@ "source_file": "TEST_USERS.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "test_users_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -162468,9 +162499,9 @@ "source_file": "TEST_USERS.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632", - "confidence_score": 1.0 + "target": "test_users_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647_\u06a9\u0627\u0645\u0644_\u062a\u0628\u0631\u06cc\u0632" }, { "relation": "contains", @@ -162478,9 +162509,9 @@ "source_file": "TEST_USERS.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u062f\u06a9\u062a\u0631\u0627\u0646_bulk_\u06f1\u06f5\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u06f1\u06f5_\u0634\u0647\u0631", - "confidence_score": 1.0 + "target": "test_users_\u062f\u06a9\u062a\u0631\u0627\u0646_bulk_\u06f1\u06f5\u06f0\u06f0_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u06f1\u06f5_\u0634\u0647\u0631" }, { "relation": "contains", @@ -162488,9 +162519,9 @@ "source_file": "TEST_USERS.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u0633\u0627\u062e\u062a_\u0645\u062c\u062f\u062f", - "confidence_score": 1.0 + "target": "test_users_\u0633\u0627\u062e\u062a_\u0645\u062c\u062f\u062f" }, { "relation": "contains", @@ -162498,9 +162529,9 @@ "source_file": "TEST_USERS.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u0645\u0646\u0634\u06cc_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "test_users_\u0645\u0646\u0634\u06cc_\u062f\u06a9\u062a\u0631_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -162508,9 +162539,9 @@ "source_file": "TEST_USERS.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "test_users_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_\u062a\u0633\u062a\u06cc", - "target": "test_users_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0646\u0645\u0648\u0646\u0647_\u062a\u0628\u0631\u06cc\u0632", - "confidence_score": 1.0 + "target": "test_users_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0646\u0645\u0648\u0646\u0647_\u062a\u0628\u0631\u06cc\u0632" }, { "relation": "contains", @@ -162518,9 +162549,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit", - "target": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "confidence_score": 1.0 + "target": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration" }, { "relation": "contains", @@ -162528,9 +162559,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_architecture_score_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0635\u0644\u0627\u062d\u0627\u062a", - "confidence_score": 1.0 + "target": "docs_architecture_audit_architecture_score_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0635\u0644\u0627\u062d\u0627\u062a" }, { "relation": "contains", @@ -162538,9 +162569,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L562", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_architecture_violations", - "confidence_score": 1.0 + "target": "docs_architecture_audit_architecture_violations" }, { "relation": "contains", @@ -162548,9 +162579,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_executive_summary", - "confidence_score": 1.0 + "target": "docs_architecture_audit_executive_summary" }, { "relation": "contains", @@ -162558,9 +162589,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L804", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_final_verdict_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0635\u0644\u0627\u062d\u0627\u062a", - "confidence_score": 1.0 + "target": "docs_architecture_audit_final_verdict_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0635\u0644\u0627\u062d\u0627\u062a" }, { "relation": "contains", @@ -162568,9 +162599,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L537", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_missing_requirements_\u06a9\u0627\u0645\u0644", - "confidence_score": 1.0 + "target": "docs_architecture_audit_missing_requirements_\u06a9\u0627\u0645\u0644" }, { "relation": "contains", @@ -162578,9 +162609,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L577", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_recommended_improvements", - "confidence_score": 1.0 + "target": "docs_architecture_audit_recommended_improvements" }, { "relation": "contains", @@ -162588,9 +162619,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L706", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_refactoring_plan", - "confidence_score": 1.0 + "target": "docs_architecture_audit_refactoring_plan" }, { "relation": "contains", @@ -162598,9 +162629,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L758", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_\u0627\u0639\u0645\u0627\u0644_\u0634\u062f\u0647_\u0628\u0639\u062f_\u0627\u0632_audit", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_\u0627\u0639\u0645\u0627\u0644_\u0634\u062f\u0647_\u0628\u0639\u062f_\u0627\u0632_audit" }, { "relation": "contains", @@ -162608,9 +162639,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L792", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u062a\u0648\u062c\u0647_\u062f\u0631_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u062a\u0648\u062c\u0647_\u062f\u0631_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -162618,9 +162649,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f1_\u062a\u0637\u0627\u0628\u0642_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0628\u0627_prd", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f1_\u062a\u0637\u0627\u0628\u0642_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0628\u0627_prd" }, { "relation": "contains", @@ -162628,9 +162659,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f1\u06f0_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f1\u06f0_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647" }, { "relation": "contains", @@ -162638,9 +162669,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -162648,9 +162679,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f3_\u062a\u062d\u0644\u06cc\u0644_design_patterns", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f3_\u062a\u062d\u0644\u06cc\u0644_design_patterns" }, { "relation": "contains", @@ -162658,9 +162689,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f4_\u062a\u062d\u0644\u06cc\u0644_domain_design", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f4_\u062a\u062d\u0644\u06cc\u0644_domain_design" }, { "relation": "contains", @@ -162668,9 +162699,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L214", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f5_\u062a\u062d\u0644\u06cc\u0644_database", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f5_\u062a\u062d\u0644\u06cc\u0644_database" }, { "relation": "contains", @@ -162678,9 +162709,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f6_\u062a\u062d\u0644\u06cc\u0644_api_design", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f6_\u062a\u062d\u0644\u06cc\u0644_api_design" }, { "relation": "contains", @@ -162688,9 +162719,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L327", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a" }, { "relation": "contains", @@ -162698,9 +162729,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L387", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f8_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f8_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc" }, { "relation": "contains", @@ -162708,9 +162739,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L428", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_architecture_audit_clinicpro_symfony_7_migration", - "target": "docs_architecture_audit_\u06f9_\u062a\u062d\u0644\u06cc\u0644_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u06f9_\u062a\u062d\u0644\u06cc\u0644_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -162718,9 +162749,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f1_\u062a\u0637\u0627\u0628\u0642_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0628\u0627_prd", - "target": "docs_architecture_audit_\u0645\u0627\u0698\u0648\u0644_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u062f\u0631_prd", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0645\u0627\u0698\u0648\u0644_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u062f\u0631_prd" }, { "relation": "contains", @@ -162728,9 +162759,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f1_\u062a\u0637\u0627\u0628\u0642_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0628\u0627_prd", - "target": "docs_architecture_audit_\u0645\u0648\u0627\u0631\u062f_\u067e\u0648\u0634\u0634_\u062f\u0627\u062f\u0647_\u0646\u0634\u062f\u0647_\u0627\u0632_prd", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0645\u0648\u0627\u0631\u062f_\u067e\u0648\u0634\u0634_\u062f\u0627\u062f\u0647_\u0646\u0634\u062f\u0647_\u0627\u0632_prd" }, { "relation": "contains", @@ -162738,9 +162769,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_maintainability", - "confidence_score": 1.0 + "target": "docs_architecture_audit_maintainability" }, { "relation": "contains", @@ -162748,9 +162779,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_observability", - "confidence_score": 1.0 + "target": "docs_architecture_audit_observability" }, { "relation": "contains", @@ -162758,9 +162789,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_performance", - "confidence_score": 1.0 + "target": "docs_architecture_audit_performance" }, { "relation": "contains", @@ -162768,9 +162799,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_reliability", - "confidence_score": 1.0 + "target": "docs_architecture_audit_reliability" }, { "relation": "contains", @@ -162778,9 +162809,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_scalability", - "confidence_score": 1.0 + "target": "docs_architecture_audit_scalability" }, { "relation": "contains", @@ -162788,9 +162819,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_security", - "confidence_score": 1.0 + "target": "docs_architecture_audit_security" }, { "relation": "contains", @@ -162798,9 +162829,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0641\u0639\u0644\u06cc", - "target": "docs_architecture_audit_testability", - "confidence_score": 1.0 + "target": "docs_architecture_audit_testability" }, { "relation": "contains", @@ -162808,9 +162839,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f3_\u062a\u062d\u0644\u06cc\u0644_design_patterns", - "target": "docs_architecture_audit_anti_pattern_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0645\u0634\u0627\u0647\u062f\u0647_\u0645\u06cc_\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_architecture_audit_anti_pattern_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0645\u0634\u0627\u0647\u062f\u0647_\u0645\u06cc_\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -162818,9 +162849,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f3_\u062a\u062d\u0644\u06cc\u0644_design_patterns", - "target": "docs_architecture_audit_pattern_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_architecture_audit_pattern_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647_\u0627\u0646\u062f" }, { "relation": "contains", @@ -162828,9 +162859,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f4_\u062a\u062d\u0644\u06cc\u0644_domain_design", - "target": "docs_architecture_audit_bounded_context_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_architecture_audit_bounded_context_\u0647\u0627" }, { "relation": "contains", @@ -162838,9 +162869,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f4_\u062a\u062d\u0644\u06cc\u0644_domain_design", - "target": "docs_architecture_audit_domain_model_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_architecture_audit_domain_model_\u0647\u0627" }, { "relation": "contains", @@ -162848,9 +162879,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f4_\u062a\u062d\u0644\u06cc\u0644_domain_design", - "target": "docs_architecture_audit_separation_of_concerns", - "confidence_score": 1.0 + "target": "docs_architecture_audit_separation_of_concerns" }, { "relation": "contains", @@ -162858,9 +162889,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f5_\u062a\u062d\u0644\u06cc\u0644_database", - "target": "docs_architecture_audit_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627\u06cc_\u0645\u0646\u0627\u0633\u0628", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627\u06cc_\u0645\u0646\u0627\u0633\u0628" }, { "relation": "contains", @@ -162868,9 +162899,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f5_\u062a\u062d\u0644\u06cc\u0644_database", - "target": "docs_architecture_audit_\u062c\u062f\u0627\u0648\u0644_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u06f3\u06f2_\u062c\u062f\u0648\u0644", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u062c\u062f\u0627\u0648\u0644_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u06f3\u06f2_\u062c\u062f\u0648\u0644" }, { "relation": "contains", @@ -162878,9 +162909,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f5_\u062a\u062d\u0644\u06cc\u0644_database", - "target": "docs_architecture_audit_\u0645\u0634\u06a9\u0644\u0627\u062a_database", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0645\u0634\u06a9\u0644\u0627\u062a_database" }, { "relation": "contains", @@ -162888,9 +162919,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f6_\u062a\u062d\u0644\u06cc\u0644_api_design", - "target": "docs_architecture_audit_\u0646\u0642\u0627\u0637_\u0636\u0639\u0641", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0646\u0642\u0627\u0637_\u0636\u0639\u0641" }, { "relation": "contains", @@ -162898,9 +162929,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L285", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f6_\u062a\u062d\u0644\u06cc\u0644_api_design", - "target": "docs_architecture_audit_\u0646\u0642\u0627\u0637_\u0642\u0648\u062a", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0646\u0642\u0627\u0637_\u0642\u0648\u062a" }, { "relation": "contains", @@ -162908,9 +162939,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_authentication", - "confidence_score": 1.0 + "target": "docs_architecture_audit_authentication" }, { "relation": "contains", @@ -162918,9 +162949,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L339", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_authorization", - "confidence_score": 1.0 + "target": "docs_architecture_audit_authorization" }, { "relation": "contains", @@ -162928,9 +162959,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L357", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_input_validation", - "confidence_score": 1.0 + "target": "docs_architecture_audit_input_validation" }, { "relation": "contains", @@ -162938,9 +162969,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L376", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_logging_security", - "confidence_score": 1.0 + "target": "docs_architecture_audit_logging_security" }, { "relation": "contains", @@ -162948,9 +162979,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L348", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_rate_limiting", - "confidence_score": 1.0 + "target": "docs_architecture_audit_rate_limiting" }, { "relation": "contains", @@ -162958,9 +162989,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L367", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f7_\u062a\u062d\u0644\u06cc\u0644_\u0627\u0645\u0646\u06cc\u062a", - "target": "docs_architecture_audit_secrets_management", - "confidence_score": 1.0 + "target": "docs_architecture_audit_secrets_management" }, { "relation": "contains", @@ -162968,9 +162999,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L405", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f8_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc", - "target": "docs_architecture_audit_\u0628\u0627_\u06f1_\u06f0\u06f0\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0646\u06cc\u0627\u0632_\u0628\u0647_refactoring_\u0627\u0633\u0627\u0633\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0628\u0627_\u06f1_\u06f0\u06f0\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0646\u06cc\u0627\u0632_\u0628\u0647_refactoring_\u0627\u0633\u0627\u0633\u06cc" }, { "relation": "contains", @@ -162978,9 +163009,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L389", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f8_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc", - "target": "docs_architecture_audit_\u0628\u0627_\u06f1\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0634\u06a9\u0644_\u062c\u062f\u06cc_\u0646\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0628\u0627_\u06f1\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0634\u06a9\u0644_\u062c\u062f\u06cc_\u0646\u06cc\u0633\u062a" }, { "relation": "contains", @@ -162988,9 +163019,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L396", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f8_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc", - "target": "docs_architecture_audit_\u0628\u0627_\u06f1\u06f0\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0631\u0648\u0639_\u0645\u06cc_\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0628\u0627_\u06f1\u06f0\u06f0_\u06f0\u06f0\u06f0_\u06a9\u0627\u0631\u0628\u0631_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0631\u0648\u0639_\u0645\u06cc_\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -162998,9 +163029,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L490", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f9_\u062a\u062d\u0644\u06cc\u0644_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", - "target": "docs_architecture_audit_dependency_direction", - "confidence_score": 1.0 + "target": "docs_architecture_audit_dependency_direction" }, { "relation": "contains", @@ -163008,9 +163039,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L442", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f9_\u062a\u062d\u0644\u06cc\u0644_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", - "target": "docs_architecture_audit_\u0633\u0627\u062e\u062a\u0627\u0631_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_domain_driven", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0633\u0627\u062e\u062a\u0627\u0631_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_domain_driven" }, { "relation": "contains", @@ -163018,9 +163049,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f9_\u062a\u062d\u0644\u06cc\u0644_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", - "target": "docs_architecture_audit_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0645\u0634\u062e\u0635", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0645\u0634\u062e\u0635" }, { "relation": "contains", @@ -163028,9 +163059,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f1\u06f0_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u062d\u0631\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u062d\u0631\u0627\u0646\u06cc" }, { "relation": "contains", @@ -163038,9 +163069,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L526", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f1\u06f0_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc" }, { "relation": "contains", @@ -163048,9 +163079,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L516", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_\u06f1\u06f0_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647", - "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0631\u06cc\u0633\u06a9_\u0647\u0627\u06cc_\u0645\u0647\u0645" }, { "relation": "contains", @@ -163058,9 +163089,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L579", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_recommended_improvements", - "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f1_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f1_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc" }, { "relation": "contains", @@ -163068,9 +163099,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L627", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_recommended_improvements", - "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f2_\u062f\u0631_\u062d\u06cc\u0646_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f2_\u062f\u0631_\u062d\u06cc\u0646_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -163078,9 +163109,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L670", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_recommended_improvements", - "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f3_\u0628\u0631\u0627\u06cc_\u0622\u0645\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0648\u0644\u06cc\u062f", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0627\u0648\u0644\u0648\u06cc\u062a_\u06f3_\u0628\u0631\u0627\u06cc_\u0622\u0645\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0648\u0644\u06cc\u062f" }, { "relation": "contains", @@ -163088,9 +163119,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L708", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_refactoring_plan", - "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f0_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_\u06f3_\u062a\u0627_\u06f5_\u0631\u0648\u0632_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f0_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc_\u06f3_\u062a\u0627_\u06f5_\u0631\u0648\u0632_\u0642\u0628\u0644_\u0627\u0632_\u0647\u0631_\u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc" }, { "relation": "contains", @@ -163098,9 +163129,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L718", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_refactoring_plan", - "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f1_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a_\u067e\u0627\u06cc\u0647_task_01", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f1_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a_\u067e\u0627\u06cc\u0647_task_01" }, { "relation": "contains", @@ -163108,9 +163139,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L727", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_refactoring_plan", - "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f2_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0627\u0698\u0648\u0644_\u0647\u0627_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_dependency", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f2_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0645\u0627\u0698\u0648\u0644_\u0647\u0627_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_dependency" }, { "relation": "contains", @@ -163118,9 +163149,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L741", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_refactoring_plan", - "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u0628\u0639\u062f_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u0628\u0639\u062f_\u0627\u0632_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -163128,9 +163159,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L749", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_refactoring_plan", - "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f4_\u0622\u0645\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0648\u0644\u06cc\u062f", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u0641\u0627\u0632_\u06f4_\u0622\u0645\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0648\u0644\u06cc\u062f" }, { "relation": "contains", @@ -163138,9 +163169,9 @@ "source_file": "docs/Architecture_Audit.md", "source_location": "L810", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_architecture_audit_final_verdict_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0635\u0644\u0627\u062d\u0627\u062a", - "target": "docs_architecture_audit_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0645\u06cc\u0645", - "confidence_score": 1.0 + "target": "docs_architecture_audit_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0645\u06cc\u0645" }, { "relation": "contains", @@ -163148,9 +163179,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u0627\u0648\u0644_\u0645\u0633\u062a\u0646\u062f_\u0645\u062d\u0635\u0648\u0644_prd", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u0627\u0648\u0644_\u0645\u0633\u062a\u0646\u062f_\u0645\u062d\u0635\u0648\u0644_prd" }, { "relation": "contains", @@ -163158,9 +163189,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L829", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api" }, { "relation": "contains", @@ -163168,9 +163199,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0645\u0633\u062a\u0646\u062f_\u062c\u0627\u0645\u0639_\u0641\u0646\u06cc_\u0648_api", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0645\u0633\u062a\u0646\u062f_\u062c\u0627\u0645\u0639_\u0641\u0646\u06cc_\u0648_api" }, { "relation": "contains", @@ -163178,9 +163209,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644" }, { "relation": "contains", @@ -163188,9 +163219,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627" }, { "relation": "contains", @@ -163198,9 +163229,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L567", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api" }, { "relation": "contains", @@ -163208,9 +163239,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L707", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -163218,9 +163249,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L757", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f5_\u0641\u0647\u0631\u0633\u062a_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u0648_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_\u0644\u0627\u0632\u0645", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f5_\u0641\u0647\u0631\u0633\u062a_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0634\u062f\u0647_\u0648_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_\u0644\u0627\u0632\u0645" }, { "relation": "contains", @@ -163228,9 +163259,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L775", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2", - "target": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a" }, { "relation": "contains", @@ -163238,9 +163269,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0645\u0633\u062a\u0646\u062f_\u062c\u0627\u0645\u0639_\u0641\u0646\u06cc_\u0648_api", - "target": "docs_clinicpro_manual_v2_\u0641\u0647\u0631\u0633\u062a_\u06a9\u0644\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0641\u0647\u0631\u0633\u062a_\u06a9\u0644\u06cc" }, { "relation": "contains", @@ -163248,9 +163279,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "target": "docs_clinicpro_manual_v2_\u06f1_\u06f1_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f1_\u06f1_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645" }, { "relation": "contains", @@ -163258,9 +163289,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "target": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc" }, { "relation": "contains", @@ -163268,9 +163299,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "target": "docs_clinicpro_manual_v2_\u06f1_\u06f3_\u067e\u0644\u0646_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f1_\u06f3_\u067e\u0644\u0646_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -163278,9 +163309,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "target": "docs_clinicpro_manual_v2_\u06f1_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f1_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -163288,9 +163319,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc", - "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -163298,9 +163329,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc", - "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -163308,9 +163339,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc", - "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0645\u0633\u062a\u0642\u0644", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0645\u0633\u062a\u0642\u0644" }, { "relation": "contains", @@ -163318,9 +163349,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1_\u06a9\u0627\u0631\u0628\u0631_user", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1_\u06a9\u0627\u0631\u0628\u0631_user" }, { "relation": "contains", @@ -163328,9 +163359,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L441", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u067e\u0631\u062f\u0627\u062e\u062a_payment_types", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u067e\u0631\u062f\u0627\u062e\u062a_payment_types" }, { "relation": "contains", @@ -163338,9 +163369,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L483", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f1_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_profile", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f1_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_profile" }, { "relation": "contains", @@ -163348,9 +163379,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L509", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f2_\u0648\u0628\u0644\u0627\u06af_blog", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f2_\u0648\u0628\u0644\u0627\u06af_blog" }, { "relation": "contains", @@ -163358,9 +163389,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L524", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc" }, { "relation": "contains", @@ -163368,9 +163399,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types" }, { "relation": "contains", @@ -163378,9 +163409,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f3_\u062f\u06a9\u062a\u0631_doctor", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f3_\u062f\u06a9\u062a\u0631_doctor" }, { "relation": "contains", @@ -163388,9 +163419,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f4_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f4_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic" }, { "relation": "contains", @@ -163398,9 +163429,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L298", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f5_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u062f\u06a9\u062a\u0631_doctor_addresses", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f5_\u0622\u062f\u0631\u0633_\u0647\u0627\u06cc_\u062f\u06a9\u062a\u0631_doctor_addresses" }, { "relation": "contains", @@ -163408,9 +163439,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L314", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f6_\u0645\u0646\u0634\u06cc_\u062f\u06a9\u062a\u0631_doctor_secretary", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f6_\u0645\u0646\u0634\u06cc_\u062f\u06a9\u062a\u0631_doctor_secretary" }, { "relation": "contains", @@ -163418,9 +163449,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_representation", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_representation" }, { "relation": "contains", @@ -163428,9 +163459,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L356", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings" }, { "relation": "contains", @@ -163438,9 +163469,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L414", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u0645\u062f\u0644_\u062f\u0627\u062f\u0647_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f9_\u0646\u0648\u0628\u062a_appointment", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f9_\u0646\u0648\u0628\u062a_appointment" }, { "relation": "contains", @@ -163448,9 +163479,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f1_\u062a\u06af_tag", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f1_\u062a\u06af_tag" }, { "relation": "contains", @@ -163458,9 +163489,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f2_\u0627\u0633\u062a\u0627\u0646_state", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f2_\u0627\u0633\u062a\u0627\u0646_state" }, { "relation": "contains", @@ -163468,9 +163499,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f3_\u0634\u0647\u0631_city", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f3_\u0634\u0647\u0631_city" }, { "relation": "contains", @@ -163478,9 +163509,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f4_\u0628\u06cc\u0645\u0647_\u067e\u0627\u06cc\u0647_basic_insurance", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f4_\u0628\u06cc\u0645\u0647_\u067e\u0627\u06cc\u0647_basic_insurance" }, { "relation": "contains", @@ -163488,9 +163519,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L214", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f5_\u0628\u06cc\u0645\u0647_\u0645\u06a9\u0645\u0644_supplementary_insurance", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f5_\u0628\u06cc\u0645\u0647_\u0645\u06a9\u0645\u0644_supplementary_insurance" }, { "relation": "contains", @@ -163498,9 +163529,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f6_\u062a\u062e\u0635\u0635_\u062f\u06a9\u062a\u0631_doctor_specialty", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f6_\u062a\u062e\u0635\u0635_\u062f\u06a9\u062a\u0631_doctor_specialty" }, { "relation": "contains", @@ -163508,9 +163539,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f7_\u062e\u062f\u0645\u0627\u062a_\u062f\u06a9\u062a\u0631_doctor_services", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f7_\u062e\u062f\u0645\u0627\u062a_\u062f\u06a9\u062a\u0631_doctor_services" }, { "relation": "contains", @@ -163518,9 +163549,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L360", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f1_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc_weekly_schedule", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f1_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc_weekly_schedule" }, { "relation": "contains", @@ -163528,9 +163559,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L373", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f2_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a_holidays", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f2_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a_holidays" }, { "relation": "contains", @@ -163538,9 +163569,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L388", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f3_\u0644\u063a\u0648_\u062a\u0639\u0637\u06cc\u0644_date_override", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f3_\u0644\u063a\u0648_\u062a\u0639\u0637\u06cc\u0644_date_override" }, { "relation": "contains", @@ -163548,9 +163579,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L404", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f4_\u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f4_\u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc" }, { "relation": "contains", @@ -163558,9 +163589,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u067e\u0631\u062f\u0627\u062e\u062a_payment_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u06f1_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u06f1_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -163568,9 +163599,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L462", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u067e\u0631\u062f\u0627\u062e\u062a_payment_types", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u06f2_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f0_\u06f2_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -163578,9 +163609,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L526", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f1_\u0646\u0638\u0631_comment", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f1_\u0646\u0638\u0631_comment" }, { "relation": "contains", @@ -163588,9 +163619,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L539", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f2_\u0644\u0627\u06cc\u06a9_like", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f2_\u0644\u0627\u06cc\u06a9_like" }, { "relation": "contains", @@ -163598,9 +163629,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L550", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc", - "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f3_\u0627\u0645\u062a\u06cc\u0627\u0632_rate", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f3_\u0627\u0645\u062a\u06cc\u0627\u0632_rate" }, { "relation": "contains", @@ -163608,9 +163639,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L571", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "target": "docs_clinicpro_manual_v2_task_02_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_task_02_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication" }, { "relation": "contains", @@ -163618,9 +163649,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L602", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "target": "docs_clinicpro_manual_v2_task_05_api_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_task_05_api_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -163628,9 +163659,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L624", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "target": "docs_clinicpro_manual_v2_task_07_api_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_task_07_api_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent" }, { "relation": "contains", @@ -163638,9 +163669,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L646", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "target": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627" }, { "relation": "contains", @@ -163648,9 +163679,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L678", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f3_\u0645\u0634\u062e\u0635\u0627\u062a_api", - "target": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -163658,9 +163689,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L584", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_02_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_get_oauth_userinfo_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u0633\u0627\u0632\u06af\u0627\u0631_\u0628\u0627_\u062f\u0631\u0648\u067e\u0627\u0644", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_oauth_userinfo_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631_\u0633\u0627\u0632\u06af\u0627\u0631_\u0628\u0627_\u062f\u0631\u0648\u067e\u0627\u0644" }, { "relation": "contains", @@ -163668,9 +163699,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L593", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_02_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_post_oauth_token_\u062a\u062c\u062f\u06cc\u062f_\u062a\u0648\u06a9\u0646_refresh", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_oauth_token_\u062a\u062c\u062f\u06cc\u062f_\u062a\u0648\u06a9\u0646_refresh" }, { "relation": "contains", @@ -163678,9 +163709,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L575", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_02_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_post_oauth_token_\u0648\u0631\u0648\u062f_\u0628\u0647_\u0633\u06cc\u0633\u062a\u0645", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_oauth_token_\u0648\u0631\u0648\u062f_\u0628\u0647_\u0633\u06cc\u0633\u062a\u0645" }, { "relation": "contains", @@ -163688,9 +163719,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L606", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_05_api_\u062f\u06a9\u062a\u0631", - "target": "docs_clinicpro_manual_v2_get_api_v1_doctors_id", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_doctors_id" }, { "relation": "contains", @@ -163698,9 +163729,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L615", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_05_api_\u062f\u06a9\u062a\u0631", - "target": "docs_clinicpro_manual_v2_get_api_v1_doctors_id_insurances", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_doctors_id_insurances" }, { "relation": "contains", @@ -163708,9 +163739,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L628", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_07_api_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent", - "target": "docs_clinicpro_manual_v2_get_api_v1_representations_id", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_representations_id" }, { "relation": "contains", @@ -163718,9 +163749,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L637", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_07_api_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent", - "target": "docs_clinicpro_manual_v2_post_api_v1_representations_id_bank_accounts", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_api_v1_representations_id_bank_accounts" }, { "relation": "contains", @@ -163728,9 +163759,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L659", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_get_api_v1_categories_cities_\u0634\u0647\u0631\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_categories_cities_\u0634\u0647\u0631\u0647\u0627" }, { "relation": "contains", @@ -163738,9 +163769,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L650", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_get_api_v1_categories_states_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_categories_states_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627" }, { "relation": "contains", @@ -163748,9 +163779,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L668", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "docs_clinicpro_manual_v2_\u0633\u0627\u06cc\u0631_endpoint_\u0647\u0627\u06cc_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0627\u0644\u0632\u0627\u0645\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0633\u0627\u06cc\u0631_endpoint_\u0647\u0627\u06cc_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0627\u0644\u0632\u0627\u0645\u06cc" }, { "relation": "contains", @@ -163758,9 +163789,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L680", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a", - "target": "docs_clinicpro_manual_v2_get_api_v1_appointment_settings_slots_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_appointment_settings_slots_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc" }, { "relation": "contains", @@ -163768,9 +163799,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L698", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a", - "target": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_holidays_\u062b\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u06cc_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_holidays_\u062b\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u06cc_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -163778,9 +163809,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L689", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a", - "target": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_overrides_\u062b\u0628\u062a_override_\u062a\u0648\u0633\u0637_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_overrides_\u062b\u0628\u062a_override_\u062a\u0648\u0633\u0637_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -163788,9 +163819,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L709", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "target": "docs_clinicpro_manual_v2_\u06f4_\u06f1_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9_sms_account", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f4_\u06f1_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9_sms_account" }, { "relation": "contains", @@ -163798,9 +163829,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L721", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "target": "docs_clinicpro_manual_v2_\u06f4_\u06f2_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9_sms_queue", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f4_\u06f2_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9_sms_queue" }, { "relation": "contains", @@ -163808,9 +163839,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L737", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "target": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -163818,9 +163849,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L748", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9", - "target": "docs_clinicpro_manual_v2_get_api_v1_sms_balance_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_get_api_v1_sms_balance_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -163828,9 +163859,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L739", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9", - "target": "docs_clinicpro_manual_v2_post_api_v1_sms_queue_\u0627\u0641\u0632\u0648\u062f\u0646_\u0628\u0647_\u0635\u0641", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_post_api_v1_sms_queue_\u0627\u0641\u0632\u0648\u062f\u0646_\u0628\u0647_\u0635\u0641" }, { "relation": "contains", @@ -163838,9 +163869,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L777", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a", - "target": "docs_clinicpro_manual_v2_\u06f6_\u06f1_\u062f\u06cc\u0627\u06af\u0631\u0627\u0645_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f6_\u06f1_\u062f\u06cc\u0627\u06af\u0631\u0627\u0645_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -163848,9 +163879,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L793", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a", - "target": "docs_clinicpro_manual_v2_\u06f6_\u06f2_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f6_\u06f2_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646" }, { "relation": "contains", @@ -163858,9 +163889,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L803", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a", - "target": "docs_clinicpro_manual_v2_\u06f6_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f6_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -163868,9 +163899,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L813", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u06f6_\u067e\u06cc\u0648\u0633\u062a", - "target": "docs_clinicpro_manual_v2_\u06f6_\u06f4_\u0645\u062d\u062f\u0648\u062f\u0647_\u0633\u06cc\u0633\u062a\u0645_scope", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u06f6_\u06f4_\u0645\u062d\u062f\u0648\u062f\u0647_\u0633\u06cc\u0633\u062a\u0645_scope" }, { "relation": "contains", @@ -163878,9 +163909,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4251", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_10_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_10_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc" }, { "relation": "contains", @@ -163888,9 +163919,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4576", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override" }, { "relation": "contains", @@ -163898,9 +163929,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4833", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a" }, { "relation": "contains", @@ -163908,9 +163939,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5090", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment" }, { "relation": "contains", @@ -163918,9 +163949,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5207", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_14_\u0645\u0646\u0634\u06cc_secretary", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_14_\u0645\u0646\u0634\u06cc_secretary" }, { "relation": "contains", @@ -163928,9 +163959,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5384", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment" }, { "relation": "contains", @@ -163938,9 +163969,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5506", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog" }, { "relation": "contains", @@ -163948,9 +163979,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L869", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_1_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_1_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication" }, { "relation": "contains", @@ -163958,9 +163989,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L981", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user" }, { "relation": "contains", @@ -163968,9 +163999,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1164", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile" }, { "relation": "contains", @@ -163978,9 +164009,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1807", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor" }, { "relation": "contains", @@ -163988,9 +164019,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2435", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address" }, { "relation": "contains", @@ -163998,9 +164029,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2641", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic" }, { "relation": "contains", @@ -164008,9 +164039,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3596", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation" }, { "relation": "contains", @@ -164018,9 +164049,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3804", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories" }, { "relation": "contains", @@ -164028,9 +164059,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4108", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance" }, { "relation": "contains", @@ -164038,9 +164069,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L854", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_\u062e\u0637\u0627\u0647\u0627\u06cc_\u0639\u0645\u0648\u0645\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u062e\u0637\u0627\u0647\u0627\u06cc_\u0639\u0645\u0648\u0645\u06cc" }, { "relation": "contains", @@ -164048,9 +164079,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L833", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_\u0628\u062e\u0634_\u062f\u0648\u0645_\u0645\u0633\u062a\u0646\u062f_\u06a9\u0627\u0645\u0644_api", - "target": "docs_clinicpro_manual_v2_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628" }, { "relation": "contains", @@ -164058,9 +164089,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L871", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_1_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_1_post_refresh_token", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_1_post_refresh_token" }, { "relation": "contains", @@ -164068,9 +164099,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L896", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_1_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_2_get_x_csrf_token", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_2_get_x_csrf_token" }, { "relation": "contains", @@ -164078,9 +164109,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L914", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_1_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_authentication", - "target": "docs_clinicpro_manual_v2_3_get_user_info", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_3_get_user_info" }, { "relation": "contains", @@ -164088,9 +164119,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L879", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_1_post_refresh_token", - "target": "docs_clinicpro_manual_v2_request_body", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body" }, { "relation": "contains", @@ -164098,9 +164129,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L888", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_1_post_refresh_token", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627" }, { "relation": "contains", @@ -164108,9 +164139,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L906", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_get_x_csrf_token", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_906", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_906" }, { "relation": "contains", @@ -164118,9 +164149,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L924", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_3_get_user_info", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_924", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_924" }, { "relation": "contains", @@ -164128,9 +164159,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L983", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_4_post_verify_code", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_4_post_verify_code" }, { "relation": "contains", @@ -164138,9 +164169,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1015", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_5_post_send_code", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_5_post_send_code" }, { "relation": "contains", @@ -164148,9 +164179,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1049", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_6_post_register", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_6_post_register" }, { "relation": "contains", @@ -164158,9 +164189,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1071", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_7_delete_delete_user", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_7_delete_delete_user" }, { "relation": "contains", @@ -164168,9 +164199,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1093", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_8_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_8_patch_patch" }, { "relation": "contains", @@ -164178,9 +164209,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1133", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_2_\u06a9\u0627\u0631\u0628\u0631_user", - "target": "docs_clinicpro_manual_v2_9_get_list_secretary", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_9_get_list_secretary" }, { "relation": "contains", @@ -164188,9 +164219,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L991", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_post_verify_code", - "target": "docs_clinicpro_manual_v2_request_body_991", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_991" }, { "relation": "contains", @@ -164198,9 +164229,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L998", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_post_verify_code", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request" }, { "relation": "contains", @@ -164208,9 +164239,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1007", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_post_verify_code", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1007", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1007" }, { "relation": "contains", @@ -164218,9 +164249,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1025", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_post_send_code", - "target": "docs_clinicpro_manual_v2_request_body_1025", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_1025" }, { "relation": "contains", @@ -164228,9 +164259,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1032", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_post_send_code", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1032", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1032" }, { "relation": "contains", @@ -164238,9 +164269,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1041", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_post_send_code", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1041", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1041" }, { "relation": "contains", @@ -164248,9 +164279,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1057", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_post_register", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc" }, { "relation": "contains", @@ -164258,9 +164289,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1063", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_post_register", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1063", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1063" }, { "relation": "contains", @@ -164268,9 +164299,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1079", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_delete_delete_user", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1079", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1079" }, { "relation": "contains", @@ -164278,9 +164309,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1085", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_delete_delete_user", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1085", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1085" }, { "relation": "contains", @@ -164288,9 +164319,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1107", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_1107", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_1107" }, { "relation": "contains", @@ -164298,9 +164329,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1115", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1115", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1115" }, { "relation": "contains", @@ -164308,9 +164339,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1101", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1101", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1101" }, { "relation": "contains", @@ -164318,9 +164349,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1125", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1125", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1125" }, { "relation": "contains", @@ -164328,9 +164359,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1147", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_get_list_secretary", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1147", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1147" }, { "relation": "contains", @@ -164338,9 +164369,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1141", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_get_list_secretary", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query" }, { "relation": "contains", @@ -164348,9 +164379,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1154", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_get_list_secretary", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1154", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1154" }, { "relation": "contains", @@ -164358,9 +164389,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1166", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile", - "target": "docs_clinicpro_manual_v2_10_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_10_post_post" }, { "relation": "contains", @@ -164368,9 +164399,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1462", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile", - "target": "docs_clinicpro_manual_v2_11_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_11_get_get" }, { "relation": "contains", @@ -164378,9 +164409,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1486", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile", - "target": "docs_clinicpro_manual_v2_12_patch_path_only_disease", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_12_patch_path_only_disease" }, { "relation": "contains", @@ -164388,9 +164419,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1783", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_3_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u06cc\u0645\u0627\u0631_user_profile", - "target": "docs_clinicpro_manual_v2_13_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_13_delete_delete" }, { "relation": "contains", @@ -164398,9 +164429,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1180", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_post_post", - "target": "docs_clinicpro_manual_v2_request_body_1180", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_1180" }, { "relation": "contains", @@ -164408,9 +164439,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1200", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1200", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1200" }, { "relation": "contains", @@ -164418,9 +164449,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1174", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1174", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1174" }, { "relation": "contains", @@ -164428,9 +164459,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1454", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1454", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1454" }, { "relation": "contains", @@ -164438,9 +164469,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1472", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1472", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1472" }, { "relation": "contains", @@ -164448,9 +164479,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1478", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1478", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1478" }, { "relation": "contains", @@ -164458,9 +164489,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1501", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_patch_path_only_disease", - "target": "docs_clinicpro_manual_v2_request_body_1501", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_1501" }, { "relation": "contains", @@ -164468,9 +164499,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1521", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_patch_path_only_disease", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1521", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1521" }, { "relation": "contains", @@ -164478,9 +164509,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1494", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_patch_path_only_disease", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1494", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1494" }, { "relation": "contains", @@ -164488,9 +164519,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1775", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_patch_path_only_disease", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1775", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1775" }, { "relation": "contains", @@ -164498,9 +164529,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1791", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1791", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1791" }, { "relation": "contains", @@ -164508,9 +164539,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1797", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1797", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1797" }, { "relation": "contains", @@ -164518,9 +164549,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1809", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_14_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_14_post_post" }, { "relation": "contains", @@ -164528,9 +164559,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1833", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_15_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_15_patch_patch" }, { "relation": "contains", @@ -164538,9 +164569,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1876", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_16_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_16_delete_delete" }, { "relation": "contains", @@ -164548,9 +164579,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1901", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_17_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_17_get_get" }, { "relation": "contains", @@ -164558,9 +164589,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2039", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_18_get_doctor_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_18_get_doctor_list" }, { "relation": "contains", @@ -164568,9 +164599,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2304", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_19_post_image_upload", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_19_post_image_upload" }, { "relation": "contains", @@ -164578,9 +164609,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2328", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_20_get_clinic_doctor_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_20_get_clinic_doctor_list" }, { "relation": "contains", @@ -164588,9 +164619,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2361", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_21_get_all_doctor_services", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_21_get_all_doctor_services" }, { "relation": "contains", @@ -164598,9 +164629,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2386", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_22_get_get_doctor_rate", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_22_get_get_doctor_rate" }, { "relation": "contains", @@ -164608,9 +164639,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2410", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_4_\u062f\u06a9\u062a\u0631_doctor", - "target": "docs_clinicpro_manual_v2_23_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_23_delete_delete" }, { "relation": "contains", @@ -164618,9 +164649,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1819", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_14_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1819", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1819" }, { "relation": "contains", @@ -164628,9 +164659,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1825", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_14_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1825", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1825" }, { "relation": "contains", @@ -164638,9 +164669,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1850", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_1850", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_1850" }, { "relation": "contains", @@ -164648,9 +164679,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1857", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1857", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_1857" }, { "relation": "contains", @@ -164658,9 +164689,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1843", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1843", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1843" }, { "relation": "contains", @@ -164668,9 +164699,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1868", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1868", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1868" }, { "relation": "contains", @@ -164678,9 +164709,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1886", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1886", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_1886" }, { "relation": "contains", @@ -164688,9 +164719,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1893", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1893", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1893" }, { "relation": "contains", @@ -164698,9 +164729,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L1911", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_17_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1911", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_1911" }, { "relation": "contains", @@ -164708,9 +164739,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2049", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_18_get_doctor_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2049", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2049" }, { "relation": "contains", @@ -164718,9 +164749,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2064", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_18_get_doctor_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2064", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2064" }, { "relation": "contains", @@ -164728,9 +164759,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2312", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_19_post_image_upload", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2312", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2312" }, { "relation": "contains", @@ -164738,9 +164769,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2320", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_19_post_image_upload", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2320", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2320" }, { "relation": "contains", @@ -164748,9 +164779,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2338", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_20_get_clinic_doctor_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2338", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2338" }, { "relation": "contains", @@ -164758,9 +164789,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2353", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_20_get_clinic_doctor_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2353", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2353" }, { "relation": "contains", @@ -164768,9 +164799,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2371", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_21_get_all_doctor_services", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2371", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2371" }, { "relation": "contains", @@ -164778,9 +164809,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2378", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_21_get_all_doctor_services", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2378", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2378" }, { "relation": "contains", @@ -164788,9 +164819,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2396", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_22_get_get_doctor_rate", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2396", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2396" }, { "relation": "contains", @@ -164798,9 +164829,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2402", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_22_get_get_doctor_rate", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2402", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2402" }, { "relation": "contains", @@ -164808,9 +164839,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2418", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_23_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2418", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2418" }, { "relation": "contains", @@ -164818,9 +164849,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2425", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_23_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2425", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2425" }, { "relation": "contains", @@ -164828,9 +164859,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2437", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "target": "docs_clinicpro_manual_v2_24_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_24_post_post" }, { "relation": "contains", @@ -164838,9 +164869,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2461", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "target": "docs_clinicpro_manual_v2_25_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_25_patch_patch" }, { "relation": "contains", @@ -164848,9 +164879,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2504", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "target": "docs_clinicpro_manual_v2_26_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_26_delete_delete" }, { "relation": "contains", @@ -164858,9 +164889,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2529", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "target": "docs_clinicpro_manual_v2_27_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_27_get_get" }, { "relation": "contains", @@ -164868,9 +164899,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2579", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_5_\u0622\u062f\u0631\u0633_\u062f\u06a9\u062a\u0631_doctor_address", - "target": "docs_clinicpro_manual_v2_28_get_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_28_get_list" }, { "relation": "contains", @@ -164878,9 +164909,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2447", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_24_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2447", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2447" }, { "relation": "contains", @@ -164888,9 +164919,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2453", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_24_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2453", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2453" }, { "relation": "contains", @@ -164898,9 +164929,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2478", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_25_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_2478", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_2478" }, { "relation": "contains", @@ -164908,9 +164939,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2485", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_25_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_2485", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_2485" }, { "relation": "contains", @@ -164918,9 +164949,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2471", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_25_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2471", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2471" }, { "relation": "contains", @@ -164928,9 +164959,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2496", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_25_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2496", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2496" }, { "relation": "contains", @@ -164938,9 +164969,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2514", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_26_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2514", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2514" }, { "relation": "contains", @@ -164948,9 +164979,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2521", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_26_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2521", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2521" }, { "relation": "contains", @@ -164958,9 +164989,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2539", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_27_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2539", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_2539" }, { "relation": "contains", @@ -164968,9 +164999,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2545", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_27_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2545", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2545" }, { "relation": "contains", @@ -164978,9 +165009,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2589", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_28_get_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2589", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2589" }, { "relation": "contains", @@ -164988,9 +165019,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2643", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_29_get_clinic_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_29_get_clinic_list" }, { "relation": "contains", @@ -164998,9 +165029,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2763", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_30_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_30_get_get" }, { "relation": "contains", @@ -165008,9 +165039,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3011", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_31_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_31_patch_patch" }, { "relation": "contains", @@ -165018,9 +165049,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3075", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_32_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_32_post_post" }, { "relation": "contains", @@ -165028,9 +165059,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3153", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_33_post_image_clinic", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_33_post_image_clinic" }, { "relation": "contains", @@ -165038,9 +165069,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3177", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_34_post_image_logo", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_34_post_image_logo" }, { "relation": "contains", @@ -165048,9 +165079,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3201", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_35_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_35_patch_patch" }, { "relation": "contains", @@ -165058,9 +165089,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3250", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_36_get_get_my_rate" }, { "relation": "contains", @@ -165068,9 +165099,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3275", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_37_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_37_post_post" }, { "relation": "contains", @@ -165078,9 +165109,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3324", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_38_get_unapproved_comments" }, { "relation": "contains", @@ -165088,9 +165119,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3354", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_39_patch_comment_confirmation" }, { "relation": "contains", @@ -165098,9 +165129,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3383", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_40_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_40_post_post" }, { "relation": "contains", @@ -165108,9 +165139,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3412", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_41_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_41_patch_patch" }, { "relation": "contains", @@ -165118,9 +165149,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3461", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_42_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_42_delete_delete" }, { "relation": "contains", @@ -165128,9 +165159,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3484", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_43_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_43_get_get" }, { "relation": "contains", @@ -165138,9 +165169,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3506", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_44_get_list_comment", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_44_get_list_comment" }, { "relation": "contains", @@ -165148,9 +165179,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3536", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_45_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_45_post_post" }, { "relation": "contains", @@ -165158,9 +165189,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3565", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_6_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic", - "target": "docs_clinicpro_manual_v2_46_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_46_patch_patch" }, { "relation": "contains", @@ -165168,9 +165199,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2653", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_29_get_clinic_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2653", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_2653" }, { "relation": "contains", @@ -165178,9 +165209,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2664", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_29_get_clinic_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2664", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2664" }, { "relation": "contains", @@ -165188,9 +165219,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L2773", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_30_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2773", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_2773" }, { "relation": "contains", @@ -165198,9 +165229,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3027", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_31_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_3027", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_3027" }, { "relation": "contains", @@ -165208,9 +165239,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3044", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_31_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3044", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3044" }, { "relation": "contains", @@ -165218,9 +165249,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3021", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_31_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3021", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3021" }, { "relation": "contains", @@ -165228,9 +165259,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3067", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_31_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3067", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3067" }, { "relation": "contains", @@ -165238,9 +165269,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3091", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_32_post_post", - "target": "docs_clinicpro_manual_v2_request_body_3091", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_3091" }, { "relation": "contains", @@ -165248,9 +165279,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3110", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_32_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3110", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3110" }, { "relation": "contains", @@ -165258,9 +165289,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3085", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_32_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3085", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3085" }, { "relation": "contains", @@ -165268,9 +165299,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3145", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_32_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3145", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3145" }, { "relation": "contains", @@ -165278,9 +165309,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3161", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_33_post_image_clinic", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3161", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3161" }, { "relation": "contains", @@ -165288,9 +165319,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3169", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_33_post_image_clinic", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3169", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3169" }, { "relation": "contains", @@ -165298,9 +165329,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3185", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_34_post_image_logo", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185" }, { "relation": "contains", @@ -165308,9 +165339,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3193", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_34_post_image_logo", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193" }, { "relation": "contains", @@ -165318,9 +165349,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3216", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_35_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_3216", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_3216" }, { "relation": "contains", @@ -165328,9 +165359,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3228", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_35_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3228", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3228" }, { "relation": "contains", @@ -165338,9 +165369,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3209", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_35_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3209", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3209" }, { "relation": "contains", @@ -165348,9 +165379,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3242", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_35_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3242", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3242" }, { "relation": "contains", @@ -165358,9 +165389,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3260", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260" }, { "relation": "contains", @@ -165368,9 +165399,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3267", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267" }, { "relation": "contains", @@ -165378,9 +165409,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3290", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_37_post_post", - "target": "docs_clinicpro_manual_v2_request_body_3290", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_3290" }, { "relation": "contains", @@ -165388,9 +165419,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3302", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_37_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3302", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3302" }, { "relation": "contains", @@ -165398,9 +165429,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3283", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_37_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3283", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3283" }, { "relation": "contains", @@ -165408,9 +165439,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3316", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_37_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3316", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3316" }, { "relation": "contains", @@ -165418,9 +165449,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3339", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3339", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3339" }, { "relation": "contains", @@ -165428,9 +165459,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3332", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3332", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3332" }, { "relation": "contains", @@ -165438,9 +165469,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3346", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_38_get_unapproved_comments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3346", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3346" }, { "relation": "contains", @@ -165448,9 +165479,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3369", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3369", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3369" }, { "relation": "contains", @@ -165458,9 +165489,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3362", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3362", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3362" }, { "relation": "contains", @@ -165468,9 +165499,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3375", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3375", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3375" }, { "relation": "contains", @@ -165478,9 +165509,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3398", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_40_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3398", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3398" }, { "relation": "contains", @@ -165488,9 +165519,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3391", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_40_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3391", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3391" }, { "relation": "contains", @@ -165498,9 +165529,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3404", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_40_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3404", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3404" }, { "relation": "contains", @@ -165508,9 +165539,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3427", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_41_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_3427", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_3427" }, { "relation": "contains", @@ -165518,9 +165549,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3439", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_41_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3439", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3439" }, { "relation": "contains", @@ -165528,9 +165559,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3420", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_41_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3420", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3420" }, { "relation": "contains", @@ -165538,9 +165569,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3453", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_41_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3453", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3453" }, { "relation": "contains", @@ -165548,9 +165579,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3469", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_42_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3469", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3469" }, { "relation": "contains", @@ -165558,9 +165589,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3476", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_42_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3476", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3476" }, { "relation": "contains", @@ -165568,9 +165599,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3492", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_43_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492" }, { "relation": "contains", @@ -165578,9 +165609,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3498", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_43_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498" }, { "relation": "contains", @@ -165588,9 +165619,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3521", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_44_get_list_comment", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3521", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3521" }, { "relation": "contains", @@ -165598,9 +165629,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3514", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_44_get_list_comment", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3514", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3514" }, { "relation": "contains", @@ -165608,9 +165639,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3528", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_44_get_list_comment", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3528", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3528" }, { "relation": "contains", @@ -165618,9 +165649,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3551", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_45_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551" }, { "relation": "contains", @@ -165628,9 +165659,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3544", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_45_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544" }, { "relation": "contains", @@ -165638,9 +165669,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3557", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_45_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557" }, { "relation": "contains", @@ -165648,9 +165679,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3580", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_46_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3580", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3580" }, { "relation": "contains", @@ -165658,9 +165689,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3573", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_46_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3573", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3573" }, { "relation": "contains", @@ -165668,9 +165699,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3586", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_46_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3586", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3586" }, { "relation": "contains", @@ -165678,9 +165709,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3598", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_47_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_47_post_post" }, { "relation": "contains", @@ -165688,9 +165719,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3620", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_48_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_48_patch_patch" }, { "relation": "contains", @@ -165698,9 +165729,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3642", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_49_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_49_get_get" }, { "relation": "contains", @@ -165708,9 +165739,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3664", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_50_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_50_get_get" }, { "relation": "contains", @@ -165718,9 +165749,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3687", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_51_get_my_appointments", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_51_get_my_appointments" }, { "relation": "contains", @@ -165728,9 +165759,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3710", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_52_get_my_doctor", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_52_get_my_doctor" }, { "relation": "contains", @@ -165738,9 +165769,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3740", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_53_get_representation_filter", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_53_get_representation_filter" }, { "relation": "contains", @@ -165748,9 +165779,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3771", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_7_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_agent_representation", - "target": "docs_clinicpro_manual_v2_54_get_yearly_income", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_54_get_yearly_income" }, { "relation": "contains", @@ -165758,9 +165789,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3606", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_47_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3606", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3606" }, { "relation": "contains", @@ -165768,9 +165799,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3612", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_47_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3612", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3612" }, { "relation": "contains", @@ -165778,9 +165809,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3628", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_48_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3628", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3628" }, { "relation": "contains", @@ -165788,9 +165819,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3634", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_48_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3634", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3634" }, { "relation": "contains", @@ -165798,9 +165829,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3650", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_49_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3650", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3650" }, { "relation": "contains", @@ -165808,9 +165839,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3656", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_49_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3656", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3656" }, { "relation": "contains", @@ -165818,9 +165849,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3672", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_50_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3672", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3672" }, { "relation": "contains", @@ -165828,9 +165859,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3679", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_50_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3679", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3679" }, { "relation": "contains", @@ -165838,9 +165869,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3695", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_51_get_my_appointments", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3695", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3695" }, { "relation": "contains", @@ -165848,9 +165879,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3702", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_51_get_my_appointments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3702", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3702" }, { "relation": "contains", @@ -165858,9 +165889,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3725", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_52_get_my_doctor", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3725", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3725" }, { "relation": "contains", @@ -165868,9 +165899,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3718", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_52_get_my_doctor", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3718", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3718" }, { "relation": "contains", @@ -165878,9 +165909,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3732", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_52_get_my_doctor", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3732", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3732" }, { "relation": "contains", @@ -165888,9 +165919,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3756", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_53_get_representation_filter", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3756", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3756" }, { "relation": "contains", @@ -165898,9 +165929,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3748", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_53_get_representation_filter", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3748", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3748" }, { "relation": "contains", @@ -165908,9 +165939,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3763", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_53_get_representation_filter", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3763", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3763" }, { "relation": "contains", @@ -165918,9 +165949,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3787", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_54_get_yearly_income", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3787", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3787" }, { "relation": "contains", @@ -165928,9 +165959,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3779", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_54_get_yearly_income", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3779", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3779" }, { "relation": "contains", @@ -165938,9 +165969,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3794", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_54_get_yearly_income", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3794", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3794" }, { "relation": "contains", @@ -165948,9 +165979,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3806", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_55_get_all_tag", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_55_get_all_tag" }, { "relation": "contains", @@ -165958,9 +165989,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3837", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_56_get_supplementary_insurance", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_56_get_supplementary_insurance" }, { "relation": "contains", @@ -165968,9 +165999,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3868", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_57_get_categories_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_57_get_categories_list" }, { "relation": "contains", @@ -165978,9 +166009,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3900", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_58_get_all_state", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_58_get_all_state" }, { "relation": "contains", @@ -165988,9 +166019,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3931", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_59_get_all_city", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_59_get_all_city" }, { "relation": "contains", @@ -165998,9 +166029,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3963", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_60_get_all_specially_doctor", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_60_get_all_specially_doctor" }, { "relation": "contains", @@ -166008,9 +166039,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3994", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_61_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_61_post_post" }, { "relation": "contains", @@ -166018,9 +166049,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4033", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_62_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_62_patch_patch" }, { "relation": "contains", @@ -166028,9 +166059,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4070", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_8_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "target": "docs_clinicpro_manual_v2_63_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_63_delete_delete" }, { "relation": "contains", @@ -166038,9 +166069,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3823", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_55_get_all_tag", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3823", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3823" }, { "relation": "contains", @@ -166048,9 +166079,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3816", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_55_get_all_tag", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3816", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3816" }, { "relation": "contains", @@ -166058,9 +166089,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3829", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_55_get_all_tag", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3829", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3829" }, { "relation": "contains", @@ -166068,9 +166099,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3854", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_56_get_supplementary_insurance", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3854", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3854" }, { "relation": "contains", @@ -166078,9 +166109,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3847", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_56_get_supplementary_insurance", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3847", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3847" }, { "relation": "contains", @@ -166088,9 +166119,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3860", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_56_get_supplementary_insurance", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3860", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3860" }, { "relation": "contains", @@ -166098,9 +166129,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3886", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_57_get_categories_list", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3886", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3886" }, { "relation": "contains", @@ -166108,9 +166139,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3878", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_57_get_categories_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3878", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3878" }, { "relation": "contains", @@ -166118,9 +166149,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3892", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_57_get_categories_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3892", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3892" }, { "relation": "contains", @@ -166128,9 +166159,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3917", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_58_get_all_state", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3917", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3917" }, { "relation": "contains", @@ -166138,9 +166169,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3910", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_58_get_all_state", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3910", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3910" }, { "relation": "contains", @@ -166148,9 +166179,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3923", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_58_get_all_state", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3923", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3923" }, { "relation": "contains", @@ -166158,9 +166189,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3949", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_59_get_all_city", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3949", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3949" }, { "relation": "contains", @@ -166168,9 +166199,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3941", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_59_get_all_city", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3941", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3941" }, { "relation": "contains", @@ -166178,9 +166209,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3955", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_59_get_all_city", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3955", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3955" }, { "relation": "contains", @@ -166188,9 +166219,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3980", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_60_get_all_specially_doctor", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3980", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3980" }, { "relation": "contains", @@ -166198,9 +166229,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3973", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_60_get_all_specially_doctor", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3973", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3973" }, { "relation": "contains", @@ -166208,9 +166239,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L3986", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_60_get_all_specially_doctor", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3986", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3986" }, { "relation": "contains", @@ -166218,9 +166249,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4009", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_61_post_post", - "target": "docs_clinicpro_manual_v2_request_body_4009", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4009" }, { "relation": "contains", @@ -166228,9 +166259,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4016", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_61_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4016", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4016" }, { "relation": "contains", @@ -166238,9 +166269,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4002", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_61_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4002", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4002" }, { "relation": "contains", @@ -166248,9 +166279,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4025", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_61_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4025", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4025" }, { "relation": "contains", @@ -166258,9 +166289,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4048", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_62_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_4048", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4048" }, { "relation": "contains", @@ -166268,9 +166299,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4054", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_62_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4054", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4054" }, { "relation": "contains", @@ -166278,9 +166309,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4041", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_62_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4041", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4041" }, { "relation": "contains", @@ -166288,9 +166319,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4062", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_62_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4062", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4062" }, { "relation": "contains", @@ -166298,9 +166329,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4084", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_63_delete_delete", - "target": "docs_clinicpro_manual_v2_request_body_4084", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4084" }, { "relation": "contains", @@ -166308,9 +166339,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4090", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_63_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4090", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4090" }, { "relation": "contains", @@ -166318,9 +166349,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4078", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_63_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4078", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4078" }, { "relation": "contains", @@ -166328,9 +166359,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4098", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_63_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4098", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4098" }, { "relation": "contains", @@ -166338,9 +166369,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4110", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance", - "target": "docs_clinicpro_manual_v2_64_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_64_post_post" }, { "relation": "contains", @@ -166348,9 +166379,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4151", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance", - "target": "docs_clinicpro_manual_v2_65_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_65_delete_delete" }, { "relation": "contains", @@ -166358,9 +166389,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4187", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance", - "target": "docs_clinicpro_manual_v2_66_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_66_get_get" }, { "relation": "contains", @@ -166368,9 +166399,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4209", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_9_\u0628\u06cc\u0645\u0647_\u062f\u06a9\u062a\u0631_doctor_insurance", - "target": "docs_clinicpro_manual_v2_67_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_67_patch_patch" }, { "relation": "contains", @@ -166378,9 +166409,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4125", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_64_post_post", - "target": "docs_clinicpro_manual_v2_request_body_4125", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4125" }, { "relation": "contains", @@ -166388,9 +166419,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4133", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_64_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4133", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4133" }, { "relation": "contains", @@ -166398,9 +166429,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4118", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_64_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4118", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4118" }, { "relation": "contains", @@ -166408,9 +166439,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4143", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_64_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4143", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4143" }, { "relation": "contains", @@ -166418,9 +166449,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4165", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_65_delete_delete", - "target": "docs_clinicpro_manual_v2_request_body_4165", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4165" }, { "relation": "contains", @@ -166428,9 +166459,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4171", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_65_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4171", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4171" }, { "relation": "contains", @@ -166438,9 +166469,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4159", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_65_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4159", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4159" }, { "relation": "contains", @@ -166448,9 +166479,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4179", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_65_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4179", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4179" }, { "relation": "contains", @@ -166458,9 +166489,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4195", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_66_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4195", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4195" }, { "relation": "contains", @@ -166468,9 +166499,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4201", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_66_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4201", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4201" }, { "relation": "contains", @@ -166478,9 +166509,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4223", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_67_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_4223", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4223" }, { "relation": "contains", @@ -166488,9 +166519,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4231", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_67_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4231", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4231" }, { "relation": "contains", @@ -166498,9 +166529,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4217", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_67_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4217", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4217" }, { "relation": "contains", @@ -166508,9 +166539,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4241", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_67_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4241", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4241" }, { "relation": "contains", @@ -166518,9 +166549,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4253", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "docs_clinicpro_manual_v2_68_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_68_post_post" }, { "relation": "contains", @@ -166528,9 +166559,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4402", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "docs_clinicpro_manual_v2_69_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_69_patch_patch" }, { "relation": "contains", @@ -166538,9 +166569,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4549", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_10_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc", - "target": "docs_clinicpro_manual_v2_70_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_70_get_get" }, { "relation": "contains", @@ -166548,9 +166579,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4270", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_68_post_post", - "target": "docs_clinicpro_manual_v2_request_body_4270", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4270" }, { "relation": "contains", @@ -166558,9 +166589,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4277", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_68_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4277", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4277" }, { "relation": "contains", @@ -166568,9 +166599,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4263", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_68_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4263", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4263" }, { "relation": "contains", @@ -166578,9 +166609,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4394", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_68_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4394", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4394" }, { "relation": "contains", @@ -166588,9 +166619,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4419", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_69_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_4419", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4419" }, { "relation": "contains", @@ -166598,9 +166629,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4425", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_69_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4425", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4425" }, { "relation": "contains", @@ -166608,9 +166639,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4412", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_69_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4412", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4412" }, { "relation": "contains", @@ -166618,9 +166649,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4541", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_69_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4541", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4541" }, { "relation": "contains", @@ -166628,9 +166659,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4559", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_70_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4559", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4559" }, { "relation": "contains", @@ -166638,9 +166669,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4566", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_70_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4566", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4566" }, { "relation": "contains", @@ -166648,9 +166679,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4578", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "target": "docs_clinicpro_manual_v2_71_get_list", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_71_get_list" }, { "relation": "contains", @@ -166658,9 +166689,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4601", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "target": "docs_clinicpro_manual_v2_72_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_72_post_post" }, { "relation": "contains", @@ -166668,9 +166699,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4658", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "target": "docs_clinicpro_manual_v2_73_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_73_patch_patch" }, { "relation": "contains", @@ -166678,9 +166709,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4785", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "target": "docs_clinicpro_manual_v2_74_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_74_delete_delete" }, { "relation": "contains", @@ -166688,9 +166719,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4808", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_11_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_date_override", - "target": "docs_clinicpro_manual_v2_75_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_75_get_get" }, { "relation": "contains", @@ -166698,9 +166729,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4586", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_71_get_list", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4586", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4586" }, { "relation": "contains", @@ -166708,9 +166739,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4593", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_71_get_list", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4593", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4593" }, { "relation": "contains", @@ -166718,9 +166749,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4616", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_72_post_post", - "target": "docs_clinicpro_manual_v2_request_body_4616", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4616" }, { "relation": "contains", @@ -166728,9 +166759,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4624", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_72_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4624", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4624" }, { "relation": "contains", @@ -166738,9 +166769,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4609", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_72_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4609", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4609" }, { "relation": "contains", @@ -166748,9 +166779,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4650", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_72_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4650", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4650" }, { "relation": "contains", @@ -166758,9 +166789,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4673", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_73_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_4673", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4673" }, { "relation": "contains", @@ -166768,9 +166799,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4679", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_73_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4679", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4679" }, { "relation": "contains", @@ -166778,9 +166809,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4666", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_73_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4666", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4666" }, { "relation": "contains", @@ -166788,9 +166819,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4777", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_73_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4777", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4777" }, { "relation": "contains", @@ -166798,9 +166829,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4793", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_74_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4793", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4793" }, { "relation": "contains", @@ -166808,9 +166839,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4800", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_74_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4800", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4800" }, { "relation": "contains", @@ -166818,9 +166849,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4816", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_75_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4816", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4816" }, { "relation": "contains", @@ -166828,9 +166859,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4823", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_75_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4823", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4823" }, { "relation": "contains", @@ -166838,9 +166869,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4835", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "target": "docs_clinicpro_manual_v2_76_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_76_delete_delete" }, { "relation": "contains", @@ -166848,9 +166879,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4858", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "target": "docs_clinicpro_manual_v2_77_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_77_post_post" }, { "relation": "contains", @@ -166858,9 +166889,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4915", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "target": "docs_clinicpro_manual_v2_78_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_78_patch_patch" }, { "relation": "contains", @@ -166868,9 +166899,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5042", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "target": "docs_clinicpro_manual_v2_79_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_79_delete_delete" }, { "relation": "contains", @@ -166878,9 +166909,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5065", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_12_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "target": "docs_clinicpro_manual_v2_80_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_80_get_get" }, { "relation": "contains", @@ -166888,9 +166919,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4843", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_76_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4843", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4843" }, { "relation": "contains", @@ -166898,9 +166929,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4850", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_76_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4850", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4850" }, { "relation": "contains", @@ -166908,9 +166939,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4873", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_77_post_post", - "target": "docs_clinicpro_manual_v2_request_body_4873", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4873" }, { "relation": "contains", @@ -166918,9 +166949,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4881", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_77_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4881", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4881" }, { "relation": "contains", @@ -166928,9 +166959,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4866", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_77_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4866", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4866" }, { "relation": "contains", @@ -166938,9 +166969,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4907", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_77_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4907", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4907" }, { "relation": "contains", @@ -166948,9 +166979,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4930", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_78_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_4930", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_4930" }, { "relation": "contains", @@ -166958,9 +166989,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4936", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_78_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4936", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4936" }, { "relation": "contains", @@ -166968,9 +166999,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L4923", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_78_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4923", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4923" }, { "relation": "contains", @@ -166978,9 +167009,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5034", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_78_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5034", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5034" }, { "relation": "contains", @@ -166988,9 +167019,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5050", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_79_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5050", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5050" }, { "relation": "contains", @@ -166998,9 +167029,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5057", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_79_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5057", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5057" }, { "relation": "contains", @@ -167008,9 +167039,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5073", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_80_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5073", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5073" }, { "relation": "contains", @@ -167018,9 +167049,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5080", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_80_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5080", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5080" }, { "relation": "contains", @@ -167028,9 +167059,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5092", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment", - "target": "docs_clinicpro_manual_v2_81_get_appointment_slots", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_81_get_appointment_slots" }, { "relation": "contains", @@ -167038,9 +167069,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5123", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment", - "target": "docs_clinicpro_manual_v2_82_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_82_post_post" }, { "relation": "contains", @@ -167048,9 +167079,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5155", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment", - "target": "docs_clinicpro_manual_v2_83_get_days_not_available_for_appointments", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_83_get_days_not_available_for_appointments" }, { "relation": "contains", @@ -167058,9 +167089,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5179", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_13_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_appointment", - "target": "docs_clinicpro_manual_v2_84_get_my_appointments", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_84_get_my_appointments" }, { "relation": "contains", @@ -167068,9 +167099,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5109", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_81_get_appointment_slots", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5109", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5109" }, { "relation": "contains", @@ -167078,9 +167109,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5102", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_81_get_appointment_slots", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5102", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5102" }, { "relation": "contains", @@ -167088,9 +167119,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5115", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_81_get_appointment_slots", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5115", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5115" }, { "relation": "contains", @@ -167098,9 +167129,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5140", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_82_post_post", - "target": "docs_clinicpro_manual_v2_request_body_5140", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_5140" }, { "relation": "contains", @@ -167108,9 +167139,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5133", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_82_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5133", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5133" }, { "relation": "contains", @@ -167118,9 +167149,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5147", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_82_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5147", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5147" }, { "relation": "contains", @@ -167128,9 +167159,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5165", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_83_get_days_not_available_for_appointments", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5165", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5165" }, { "relation": "contains", @@ -167138,9 +167169,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5171", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_83_get_days_not_available_for_appointments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5171", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5171" }, { "relation": "contains", @@ -167148,9 +167179,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5189", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_84_get_my_appointments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5189", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5189" }, { "relation": "contains", @@ -167158,9 +167189,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5197", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_84_get_my_appointments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5197", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5197" }, { "relation": "contains", @@ -167168,9 +167199,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5209", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_14_\u0645\u0646\u0634\u06cc_secretary", - "target": "docs_clinicpro_manual_v2_85_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_85_post_post" }, { "relation": "contains", @@ -167178,9 +167209,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5232", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_14_\u0645\u0646\u0634\u06cc_secretary", - "target": "docs_clinicpro_manual_v2_86_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_86_patch_patch" }, { "relation": "contains", @@ -167188,9 +167219,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5359", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_14_\u0645\u0646\u0634\u06cc_secretary", - "target": "docs_clinicpro_manual_v2_87_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_87_get_get" }, { "relation": "contains", @@ -167198,9 +167229,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5217", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_85_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5217", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5217" }, { "relation": "contains", @@ -167208,9 +167239,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5224", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_85_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5224", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5224" }, { "relation": "contains", @@ -167218,9 +167249,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5247", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_86_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_5247", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_5247" }, { "relation": "contains", @@ -167228,9 +167259,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5253", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_86_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5253", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5253" }, { "relation": "contains", @@ -167238,9 +167269,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5240", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_86_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5240", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5240" }, { "relation": "contains", @@ -167248,9 +167279,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5351", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_86_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5351", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5351" }, { "relation": "contains", @@ -167258,9 +167289,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5367", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_87_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5367", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5367" }, { "relation": "contains", @@ -167268,9 +167299,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5374", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_87_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5374", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5374" }, { "relation": "contains", @@ -167278,9 +167309,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5386", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "target": "docs_clinicpro_manual_v2_88_get_get", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_88_get_get" }, { "relation": "contains", @@ -167288,9 +167319,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5409", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "target": "docs_clinicpro_manual_v2_89_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_89_patch_patch" }, { "relation": "contains", @@ -167298,9 +167329,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5432", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "target": "docs_clinicpro_manual_v2_90_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_90_post_post" }, { "relation": "contains", @@ -167308,9 +167339,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5455", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "target": "docs_clinicpro_manual_v2_91_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_91_delete_delete" }, { "relation": "contains", @@ -167318,9 +167349,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5478", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_15_\u067e\u0631\u062f\u0627\u062e\u062a_payment", - "target": "docs_clinicpro_manual_v2_92_get_my_payments", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_92_get_my_payments" }, { "relation": "contains", @@ -167328,9 +167359,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5394", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_88_get_get", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5394", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5394" }, { "relation": "contains", @@ -167338,9 +167369,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5401", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_88_get_get", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5401", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5401" }, { "relation": "contains", @@ -167348,9 +167379,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5417", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_89_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5417", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5417" }, { "relation": "contains", @@ -167358,9 +167389,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5424", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_89_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5424", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5424" }, { "relation": "contains", @@ -167368,9 +167399,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5440", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_90_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5440", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5440" }, { "relation": "contains", @@ -167378,9 +167409,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5447", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_90_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5447", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5447" }, { "relation": "contains", @@ -167388,9 +167419,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5463", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_91_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5463", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5463" }, { "relation": "contains", @@ -167398,9 +167429,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5470", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_91_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5470", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5470" }, { "relation": "contains", @@ -167408,9 +167439,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5488", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_92_get_my_payments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5488", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5488" }, { "relation": "contains", @@ -167418,9 +167449,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5496", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_92_get_my_payments", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5496", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5496" }, { "relation": "contains", @@ -167428,9 +167459,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5508", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_93_get_top_blogs", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_93_get_top_blogs" }, { "relation": "contains", @@ -167438,9 +167469,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5696", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_94_post_post", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_94_post_post" }, { "relation": "contains", @@ -167448,9 +167479,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5746", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_95_patch_patch", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_95_patch_patch" }, { "relation": "contains", @@ -167458,9 +167489,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5787", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_96_delete_delete", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_96_delete_delete" }, { "relation": "contains", @@ -167468,9 +167499,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5812", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_97_get_get_blog", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_97_get_get_blog" }, { "relation": "contains", @@ -167478,9 +167509,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5836", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_98_get_list_blogs", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_98_get_list_blogs" }, { "relation": "contains", @@ -167488,9 +167519,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5869", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_16_\u0648\u0628\u0644\u0627\u06af_blog", - "target": "docs_clinicpro_manual_v2_99_post_image_upload", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_99_post_image_upload" }, { "relation": "contains", @@ -167498,9 +167529,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5518", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_93_get_top_blogs", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5518", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5518" }, { "relation": "contains", @@ -167508,9 +167539,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5524", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_93_get_top_blogs", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5524", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5524" }, { "relation": "contains", @@ -167518,9 +167549,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5713", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_94_post_post", - "target": "docs_clinicpro_manual_v2_request_body_5713", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_5713" }, { "relation": "contains", @@ -167528,9 +167559,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5721", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_94_post_post", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5721", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5721" }, { "relation": "contains", @@ -167538,9 +167569,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5706", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_94_post_post", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5706", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5706" }, { "relation": "contains", @@ -167548,9 +167579,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5738", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_94_post_post", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5738", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5738" }, { "relation": "contains", @@ -167558,9 +167589,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5763", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_95_patch_patch", - "target": "docs_clinicpro_manual_v2_request_body_5763", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_request_body_5763" }, { "relation": "contains", @@ -167568,9 +167599,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5770", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_95_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5770", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_5770" }, { "relation": "contains", @@ -167578,9 +167609,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5756", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_95_patch_patch", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5756", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5756" }, { "relation": "contains", @@ -167588,9 +167619,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5779", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_95_patch_patch", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5779", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5779" }, { "relation": "contains", @@ -167598,9 +167629,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5797", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_96_delete_delete", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5797", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5797" }, { "relation": "contains", @@ -167608,9 +167639,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5804", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_96_delete_delete", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5804", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5804" }, { "relation": "contains", @@ -167618,9 +167649,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5822", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_97_get_get_blog", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5822", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5822" }, { "relation": "contains", @@ -167628,9 +167659,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5828", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_97_get_get_blog", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5828", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5828" }, { "relation": "contains", @@ -167638,9 +167669,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5855", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_98_get_list_blogs", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5855", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5855" }, { "relation": "contains", @@ -167648,9 +167679,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5846", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_98_get_list_blogs", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5846", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_5846" }, { "relation": "contains", @@ -167658,9 +167689,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5861", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_98_get_list_blogs", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5861", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5861" }, { "relation": "contains", @@ -167668,9 +167699,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5877", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_99_post_image_upload", - "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5877", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_5877" }, { "relation": "contains", @@ -167678,9 +167709,9 @@ "source_file": "docs/ClinicPro_Manual_v2.md", "source_location": "L5885", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_clinicpro_manual_v2_99_post_image_upload", - "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5885", - "confidence_score": 1.0 + "target": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_5885" }, { "relation": "contains", @@ -167688,9 +167719,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd", - "target": "prd_prd_prd_clinicpro_phase_2", - "confidence_score": 1.0 + "target": "prd_prd_prd_clinicpro_phase_2" }, { "relation": "contains", @@ -167698,9 +167729,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L548", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_definition_of_done_\u0647\u0631_\u0627\u067e\u06cc\u06a9", - "confidence_score": 1.0 + "target": "prd_prd_definition_of_done_\u0647\u0631_\u0627\u067e\u06cc\u06a9" }, { "relation": "contains", @@ -167708,9 +167739,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L490", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0628\u0646\u062f\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0628\u0646\u062f\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -167718,9 +167749,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627" }, { "relation": "contains", @@ -167728,9 +167759,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc", - "confidence_score": 1.0 + "target": "prd_prd_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc" }, { "relation": "contains", @@ -167738,9 +167769,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L524", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "prd_prd_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a_\u0645\u0648\u062c\u0648\u062f_\u0642\u0627\u0628\u0644_\u0627\u0633\u062a\u0641\u0627\u062f\u0647" }, { "relation": "contains", @@ -167748,9 +167779,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L538", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0634\u062a\u0631\u06a9", - "confidence_score": 1.0 + "target": "prd_prd_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0634\u062a\u0631\u06a9" }, { "relation": "contains", @@ -167758,9 +167789,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L504", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0646\u0642\u0634\u0647_entity_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u0642\u0634\u0647_entity_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -167768,9 +167799,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_prd_clinicpro_phase_2", - "target": "prd_prd_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "prd_prd_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -167778,9 +167809,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -167788,9 +167819,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers" }, { "relation": "contains", @@ -167798,9 +167829,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644" }, { "relation": "contains", @@ -167808,9 +167839,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services" }, { "relation": "contains", @@ -167818,9 +167849,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel" }, { "relation": "contains", @@ -167828,9 +167859,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records" }, { "relation": "contains", @@ -167838,9 +167869,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L463", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "confidence_score": 1.0 + "target": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard" }, { "relation": "contains", @@ -167848,9 +167879,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_api", - "confidence_score": 1.0 + "target": "prd_prd_api" }, { "relation": "contains", @@ -167858,9 +167889,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_entity_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prd_prd_entity_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -167868,9 +167899,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_frontend", - "confidence_score": 1.0 + "target": "prd_prd_frontend" }, { "relation": "contains", @@ -167878,9 +167909,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -167888,9 +167919,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -167898,9 +167929,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f1_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc" }, { "relation": "contains", @@ -167908,9 +167939,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_api_178", - "confidence_score": 1.0 + "target": "prd_prd_api_178" }, { "relation": "contains", @@ -167918,9 +167949,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -167928,9 +167959,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_frontend_194", - "confidence_score": 1.0 + "target": "prd_prd_frontend_194" }, { "relation": "contains", @@ -167938,9 +167969,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_99", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_99" }, { "relation": "contains", @@ -167948,9 +167979,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u062f\u0648\u0631\u0647_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u0645\u062b\u0627\u0644_\u0627\u062f\u0645\u06cc\u0646_\u062a\u0646\u0638\u06cc\u0645_\u0645\u06cc_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "prd_prd_\u062f\u0648\u0631\u0647_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9_\u0645\u062b\u0627\u0644_\u0627\u062f\u0645\u06cc\u0646_\u062a\u0646\u0638\u06cc\u0645_\u0645\u06cc_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -167958,9 +167989,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u0633\u0637\u0648\u062d_\u067e\u0646\u0644", - "confidence_score": 1.0 + "target": "prd_prd_\u0633\u0637\u0648\u062d_\u067e\u0646\u0644" }, { "relation": "contains", @@ -167968,9 +167999,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L205", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_205", - "confidence_score": 1.0 + "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_205" }, { "relation": "contains", @@ -167978,9 +168009,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062a\u0631\u06cc\u0627\u0644", - "confidence_score": 1.0 + "target": "prd_prd_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062a\u0631\u06cc\u0627\u0644" }, { "relation": "contains", @@ -167988,9 +168019,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f2_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_129", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_129" }, { "relation": "contains", @@ -167998,9 +168029,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L239", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644", - "target": "prd_prd_api_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0646\u062f\u0627\u0631\u0646\u062f", - "confidence_score": 1.0 + "target": "prd_prd_api_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0646\u062f\u0627\u0631\u0646\u062f" }, { "relation": "contains", @@ -168008,9 +168039,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644", - "target": "prd_prd_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632" }, { "relation": "contains", @@ -168018,9 +168049,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_218", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_218" }, { "relation": "contains", @@ -168028,9 +168059,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f3_\u0645\u0646\u0634\u06cc_secretary_\u062a\u06a9\u0645\u06cc\u0644", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_225", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_225" }, { "relation": "contains", @@ -168038,9 +168069,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L282", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_api_282", - "confidence_score": 1.0 + "target": "prd_prd_api_282" }, { "relation": "contains", @@ -168048,9 +168079,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L261", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_261", - "confidence_score": 1.0 + "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_261" }, { "relation": "contains", @@ -168058,9 +168089,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L295", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_frontend_295", - "confidence_score": 1.0 + "target": "prd_prd_frontend_295" }, { "relation": "contains", @@ -168068,9 +168099,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L247", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_247", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_247" }, { "relation": "contains", @@ -168078,9 +168109,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L299", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_299", - "confidence_score": 1.0 + "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_299" }, { "relation": "contains", @@ -168088,9 +168119,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L251", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f4_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_251", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_251" }, { "relation": "contains", @@ -168098,9 +168129,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L352", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_api_352", - "confidence_score": 1.0 + "target": "prd_prd_api_352" }, { "relation": "contains", @@ -168108,9 +168139,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_331", - "confidence_score": 1.0 + "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_331" }, { "relation": "contains", @@ -168118,9 +168149,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L363", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_frontend_363", - "confidence_score": 1.0 + "target": "prd_prd_frontend_363" }, { "relation": "contains", @@ -168128,9 +168159,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_\u062a\u0623\u062b\u06cc\u0631_\u0628\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0623\u062b\u06cc\u0631_\u0628\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -168138,9 +168169,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L310", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_310", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_310" }, { "relation": "contains", @@ -168148,9 +168179,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f5_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_sms_panel", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_318", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_318" }, { "relation": "contains", @@ -168158,9 +168189,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L436", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_api_436", - "confidence_score": 1.0 + "target": "prd_prd_api_436" }, { "relation": "contains", @@ -168168,9 +168199,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_401", - "confidence_score": 1.0 + "target": "prd_prd_entities_\u062c\u062f\u06cc\u062f_401" }, { "relation": "contains", @@ -168178,9 +168209,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L447", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_frontend_447", - "confidence_score": 1.0 + "target": "prd_prd_frontend_447" }, { "relation": "contains", @@ -168188,9 +168219,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L376", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_376", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_376" }, { "relation": "contains", @@ -168198,9 +168229,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L453", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_453", - "confidence_score": 1.0 + "target": "prd_prd_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_453" }, { "relation": "contains", @@ -168208,9 +168239,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L391", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_\u0645\u062d\u0627\u0633\u0628\u0647_\u0645\u0628\u0644\u063a_\u0646\u0647\u0627\u06cc\u06cc_\u0633\u0634\u0646", - "confidence_score": 1.0 + "target": "prd_prd_\u0645\u062d\u0627\u0633\u0628\u0647_\u0645\u0628\u0644\u063a_\u0646\u0647\u0627\u06cc\u06cc_\u0633\u0634\u0646" }, { "relation": "contains", @@ -168218,9 +168249,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L380", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f6_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_380", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_380" }, { "relation": "contains", @@ -168228,9 +168259,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L478", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prd_prd_api_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632_\u0628\u0647_endpoint_\u062c\u062f\u06cc\u062f_\u0646\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "prd_prd_api_\u0645\u0648\u062c\u0648\u062f_\u0646\u06cc\u0627\u0632_\u0628\u0647_endpoint_\u062c\u062f\u06cc\u062f_\u0646\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -168238,9 +168269,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L483", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prd_prd_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632" }, { "relation": "contains", @@ -168248,9 +168279,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L465", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_465", - "confidence_score": 1.0 + "target": "prd_prd_\u062a\u0648\u0636\u06cc\u062d_465" }, { "relation": "contains", @@ -168258,9 +168289,9 @@ "source_file": "docs/PRD/prd.md", "source_location": "L469", "weight": 1.0, + "confidence_score": 1.0, "source": "prd_prd_\u0627\u067e\u06cc\u06a9_\u06f7_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_smart_dashboard", - "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_469", - "confidence_score": 1.0 + "target": "prd_prd_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u06a9\u0631\u062f\u06cc_469" }, { "relation": "contains", @@ -168268,9 +168299,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec", - "target": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification" }, { "relation": "contains", @@ -168278,9 +168309,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L330", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_10_modal_dialog", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_10_modal_dialog" }, { "relation": "contains", @@ -168288,9 +168319,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L354", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_11_toast_notifications", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_11_toast_notifications" }, { "relation": "contains", @@ -168298,9 +168329,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L372", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_12_empty_states_loading", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_12_empty_states_loading" }, { "relation": "contains", @@ -168308,9 +168339,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L400", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_13_page_header_\u0647\u0631_\u0635\u0641\u062d\u0647", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_13_page_header_\u0647\u0631_\u0635\u0641\u062d\u0647" }, { "relation": "contains", @@ -168318,9 +168349,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L411", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_14_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc_stack", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_14_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc_stack" }, { "relation": "contains", @@ -168328,9 +168359,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L435", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_15_responsive_breakpoints", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_15_responsive_breakpoints" }, { "relation": "contains", @@ -168338,9 +168369,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L445", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_16_dark_mode_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0641\u0627\u0632_\u062f\u0648\u0645", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_16_dark_mode_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0641\u0627\u0632_\u062f\u0648\u0645" }, { "relation": "contains", @@ -168348,9 +168379,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L459", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_17_\u0646\u0645\u0648\u0646\u0647_\u0631\u0646\u06af_\u0628\u0646\u062f\u06cc_\u0635\u0641\u062d\u0647_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_17_\u0646\u0645\u0648\u0646\u0647_\u0631\u0646\u06af_\u0628\u0646\u062f\u06cc_\u0635\u0641\u062d\u0647_\u062f\u0627\u0634\u0628\u0648\u0631\u062f" }, { "relation": "contains", @@ -168358,9 +168389,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_1_design_system_\u067e\u0627\u06cc\u0647", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_1_design_system_\u067e\u0627\u06cc\u0647" }, { "relation": "contains", @@ -168368,9 +168399,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_2_layout_structure", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_2_layout_structure" }, { "relation": "contains", @@ -168378,9 +168409,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_3_sidebar", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_3_sidebar" }, { "relation": "contains", @@ -168388,9 +168419,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_4_topbar", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_4_topbar" }, { "relation": "contains", @@ -168398,9 +168429,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_5_cards", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_5_cards" }, { "relation": "contains", @@ -168408,9 +168439,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L215", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_6_datatable_\u062c\u062f\u0648\u0644_\u062f\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_6_datatable_\u062c\u062f\u0648\u0644_\u062f\u0627\u062f\u0647" }, { "relation": "contains", @@ -168418,9 +168449,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L240", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_7_status_badges", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_7_status_badges" }, { "relation": "contains", @@ -168428,9 +168459,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_8_\u0641\u0631\u0645_\u0647\u0627_forms", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_8_\u0641\u0631\u0645_\u0647\u0627_forms" }, { "relation": "contains", @@ -168438,9 +168469,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L311", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_9_\u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627_charts", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_9_\u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627_charts" }, { "relation": "contains", @@ -168448,9 +168479,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L478", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_clinicpro_admin_ui_design_specification", - "target": "admin_ui_ui_design_spec_\u0645\u0646\u0627\u0628\u0639", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u0645\u0646\u0627\u0628\u0639" }, { "relation": "contains", @@ -168458,9 +168489,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_1_design_system_\u067e\u0627\u06cc\u0647", - "target": "admin_ui_ui_design_spec_spacing_border_radius", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_spacing_border_radius" }, { "relation": "contains", @@ -168468,9 +168499,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_1_design_system_\u067e\u0627\u06cc\u0647", - "target": "admin_ui_ui_design_spec_\u062a\u0627\u06cc\u067e\u0648\u06af\u0631\u0627\u0641\u06cc", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u062a\u0627\u06cc\u067e\u0648\u06af\u0631\u0627\u0641\u06cc" }, { "relation": "contains", @@ -168478,9 +168509,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_1_design_system_\u067e\u0627\u06cc\u0647", - "target": "admin_ui_ui_design_spec_\u0631\u0646\u06af_\u0628\u0646\u062f\u06cc_color_palette", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u0631\u0646\u06af_\u0628\u0646\u062f\u06cc_color_palette" }, { "relation": "contains", @@ -168488,9 +168519,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_3_sidebar", - "target": "admin_ui_ui_design_spec_\u062d\u0627\u0644\u062a_\u0628\u0627\u0632_260px", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u062d\u0627\u0644\u062a_\u0628\u0627\u0632_260px" }, { "relation": "contains", @@ -168498,9 +168529,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_3_sidebar", - "target": "admin_ui_ui_design_spec_\u062d\u0627\u0644\u062a_\u062c\u0645\u0639_\u0634\u062f\u0647_72px_flyout_on_hover", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u062d\u0627\u0644\u062a_\u062c\u0645\u0639_\u0634\u062f\u0647_72px_flyout_on_hover" }, { "relation": "contains", @@ -168508,9 +168539,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_5_cards", - "target": "admin_ui_ui_design_spec_data_card_\u0645\u062d\u062a\u0648\u0627_\u062c\u062f\u0627\u0648\u0644", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_data_card_\u0645\u062d\u062a\u0648\u0627_\u062c\u062f\u0627\u0648\u0644" }, { "relation": "contains", @@ -168518,9 +168549,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L191", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_5_cards", - "target": "admin_ui_ui_design_spec_stat_card_\u0622\u0645\u0627\u0631_\u062e\u0644\u0627\u0635\u0647", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_stat_card_\u0622\u0645\u0627\u0631_\u062e\u0644\u0627\u0635\u0647" }, { "relation": "contains", @@ -168528,9 +168559,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L279", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_8_\u0641\u0631\u0645_\u0647\u0627_forms", - "target": "admin_ui_ui_design_spec_input", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_input" }, { "relation": "contains", @@ -168538,9 +168569,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L300", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_8_\u0641\u0631\u0645_\u0647\u0627_forms", - "target": "admin_ui_ui_design_spec_permission_matrix_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_permission_matrix_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -168548,9 +168579,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L296", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_8_\u0641\u0631\u0645_\u0647\u0627_forms", - "target": "admin_ui_ui_design_spec_select_dropdown", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_select_dropdown" }, { "relation": "contains", @@ -168558,9 +168589,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_9_\u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627_charts", - "target": "admin_ui_ui_design_spec_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0627\u0635\u0644\u06cc", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0627\u0635\u0644\u06cc" }, { "relation": "contains", @@ -168568,9 +168599,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L384", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_12_empty_states_loading", - "target": "admin_ui_ui_design_spec_empty_state", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_empty_state" }, { "relation": "contains", @@ -168578,9 +168609,9 @@ "source_file": "docs/admin-ui/ui-design-spec.md", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_ui_design_spec_12_empty_states_loading", - "target": "admin_ui_ui_design_spec_loading_skeleton", - "confidence_score": 1.0 + "target": "admin_ui_ui_design_spec_loading_skeleton" }, { "relation": "contains", @@ -168588,9 +168619,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow", - "target": "admin_ui_user_flow_admin_panel_user_flow_react", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_admin_panel_user_flow_react" }, { "relation": "contains", @@ -168598,9 +168629,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L250", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0638\u0631\u0627\u062a_comment_moderation", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_10_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0638\u0631\u0627\u062a_comment_moderation" }, { "relation": "contains", @@ -168608,9 +168639,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_11_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_rating_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_11_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_rating_management" }, { "relation": "contains", @@ -168618,9 +168649,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_12_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_12_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_management" }, { "relation": "contains", @@ -168628,9 +168659,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_13_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_13_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_categories" }, { "relation": "contains", @@ -168638,9 +168669,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_14_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0628\u0644\u0627\u06af_blog_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_14_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0628\u0644\u0627\u06af_blog_management" }, { "relation": "contains", @@ -168648,9 +168679,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L364", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_15_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0646\u0634\u06cc_\u0647\u0627_secretary_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_15_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0646\u0634\u06cc_\u0647\u0627_secretary_management" }, { "relation": "contains", @@ -168658,9 +168689,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L386", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_16_\u0633\u0627\u062e\u062a\u0627\u0631_navigation_sidebar", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_16_\u0633\u0627\u062e\u062a\u0627\u0631_navigation_sidebar" }, { "relation": "contains", @@ -168668,9 +168699,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L408", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_17_global_components", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_17_global_components" }, { "relation": "contains", @@ -168678,9 +168709,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_18_auth_guard_route_protection", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_18_auth_guard_route_protection" }, { "relation": "contains", @@ -168688,9 +168719,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_19_state_management_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_19_state_management_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc" }, { "relation": "contains", @@ -168698,9 +168729,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_1_authentication", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_1_authentication" }, { "relation": "contains", @@ -168708,9 +168739,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_2_dashboard_\u0635\u0641\u062d\u0647_\u0627\u0635\u0644\u06cc", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_2_dashboard_\u0635\u0641\u062d\u0647_\u0627\u0635\u0644\u06cc" }, { "relation": "contains", @@ -168718,9 +168749,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_3_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_user_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_3_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u06a9\u0627\u0631\u0628\u0631\u0627\u0646_user_management" }, { "relation": "contains", @@ -168728,9 +168759,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_4_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_doctor_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_4_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_doctor_management" }, { "relation": "contains", @@ -168738,9 +168769,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_5_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627_clinic_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_5_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627_clinic_management" }, { "relation": "contains", @@ -168748,9 +168779,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_6_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0648\u0628\u062a_\u0647\u0627_appointment_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_6_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0648\u0628\u062a_\u0647\u0627_appointment_management" }, { "relation": "contains", @@ -168758,9 +168789,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_7_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_payment_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_7_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_payment_management" }, { "relation": "contains", @@ -168768,9 +168799,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_8_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062a\u0633\u0648\u06cc\u0647_\u062d\u0633\u0627\u0628_settlement_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_8_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062a\u0633\u0648\u06cc\u0647_\u062d\u0633\u0627\u0628_settlement_management" }, { "relation": "contains", @@ -168778,9 +168809,9 @@ "source_file": "docs/admin-ui/user-flow.md", "source_location": "L226", "weight": 1.0, + "confidence_score": 1.0, "source": "admin_ui_user_flow_admin_panel_user_flow_react", - "target": "admin_ui_user_flow_9_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u0627\u0646_representation_management", - "confidence_score": 1.0 + "target": "admin_ui_user_flow_9_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u0627\u0646_representation_management" }, { "relation": "references", @@ -168788,9 +168819,9 @@ "source_file": "docs/api/README.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_admin", - "confidence_score": 1.0 + "target": "api_admin" }, { "relation": "references", @@ -168798,9 +168829,9 @@ "source_file": "docs/api/README.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_appointment", - "confidence_score": 1.0 + "target": "api_appointment" }, { "relation": "references", @@ -168808,9 +168839,9 @@ "source_file": "docs/api/README.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_appointment_settings", - "confidence_score": 1.0 + "target": "api_appointment_settings" }, { "relation": "references", @@ -168818,9 +168849,9 @@ "source_file": "docs/api/README.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_auth", - "confidence_score": 1.0 + "target": "api_auth" }, { "relation": "references", @@ -168828,9 +168859,9 @@ "source_file": "docs/api/README.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_blog", - "confidence_score": 1.0 + "target": "api_blog" }, { "relation": "references", @@ -168838,9 +168869,9 @@ "source_file": "docs/api/README.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_clinic", - "confidence_score": 1.0 + "target": "api_clinic" }, { "relation": "references", @@ -168848,9 +168879,9 @@ "source_file": "docs/api/README.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_clinic_invitation", - "confidence_score": 1.0 + "target": "api_clinic_invitation" }, { "relation": "references", @@ -168858,9 +168889,9 @@ "source_file": "docs/api/README.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_doctor", - "confidence_score": 1.0 + "target": "api_doctor" }, { "relation": "references", @@ -168868,9 +168899,9 @@ "source_file": "docs/api/README.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_doctor_service", - "confidence_score": 1.0 + "target": "api_doctor_service" }, { "relation": "references", @@ -168878,9 +168909,9 @@ "source_file": "docs/api/README.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_insurance", - "confidence_score": 1.0 + "target": "api_insurance" }, { "relation": "references", @@ -168888,9 +168919,9 @@ "source_file": "docs/api/README.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_location", - "confidence_score": 1.0 + "target": "api_location" }, { "relation": "references", @@ -168898,9 +168929,9 @@ "source_file": "docs/api/README.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_payment", - "confidence_score": 1.0 + "target": "api_payment" }, { "relation": "references", @@ -168908,9 +168939,9 @@ "source_file": "docs/api/README.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_rating", - "confidence_score": 1.0 + "target": "api_rating" }, { "relation": "contains", @@ -168918,9 +168949,9 @@ "source_file": "docs/api/README.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_readme_clinicpro_api_documentation_index", - "confidence_score": 1.0 + "target": "api_readme_clinicpro_api_documentation_index" }, { "relation": "references", @@ -168928,9 +168959,9 @@ "source_file": "docs/api/README.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_representation", - "confidence_score": 1.0 + "target": "api_representation" }, { "relation": "references", @@ -168938,9 +168969,9 @@ "source_file": "docs/api/README.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_secretary", - "confidence_score": 1.0 + "target": "api_secretary" }, { "relation": "references", @@ -168948,9 +168979,9 @@ "source_file": "docs/api/README.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_settlement", - "confidence_score": 1.0 + "target": "api_settlement" }, { "relation": "references", @@ -168958,9 +168989,9 @@ "source_file": "docs/api/README.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_sms", - "confidence_score": 1.0 + "target": "api_sms" }, { "relation": "references", @@ -168968,9 +168999,9 @@ "source_file": "docs/api/README.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_specialty", - "confidence_score": 1.0 + "target": "api_specialty" }, { "relation": "references", @@ -168978,9 +169009,9 @@ "source_file": "docs/api/README.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_tag", - "confidence_score": 1.0 + "target": "api_tag" }, { "relation": "references", @@ -168988,9 +169019,9 @@ "source_file": "docs/api/README.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme", - "target": "api_user_profile", - "confidence_score": 1.0 + "target": "api_user_profile" }, { "relation": "contains", @@ -168998,9 +169029,9 @@ "source_file": "docs/api/README.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme_clinicpro_api_documentation_index", - "target": "api_readme_authentication", - "confidence_score": 1.0 + "target": "api_readme_authentication" }, { "relation": "contains", @@ -169008,9 +169039,9 @@ "source_file": "docs/api/README.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme_clinicpro_api_documentation_index", - "target": "api_readme_error_code_reference", - "confidence_score": 1.0 + "target": "api_readme_error_code_reference" }, { "relation": "contains", @@ -169018,9 +169049,9 @@ "source_file": "docs/api/README.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme_clinicpro_api_documentation_index", - "target": "api_readme_modules", - "confidence_score": 1.0 + "target": "api_readme_modules" }, { "relation": "contains", @@ -169028,9 +169059,9 @@ "source_file": "docs/api/README.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "api_readme_clinicpro_api_documentation_index", - "target": "api_readme_standard_response_envelope", - "confidence_score": 1.0 + "target": "api_readme_standard_response_envelope" }, { "relation": "contains", @@ -169038,9 +169069,9 @@ "source_file": "docs/api/admin.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin", - "target": "api_admin_admin_api", - "confidence_score": 1.0 + "target": "api_admin_admin_api" }, { "relation": "references", @@ -169048,9 +169079,9 @@ "source_file": "docs/api/admin.md", "source_location": "L817", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin", - "target": "api_clinic_invitation", - "confidence_score": 1.0 + "target": "api_clinic_invitation" }, { "relation": "references", @@ -169058,9 +169089,9 @@ "source_file": "docs/api/admin.md", "source_location": "L811", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin", - "target": "api_sms", - "confidence_score": 1.0 + "target": "api_sms" }, { "relation": "contains", @@ -169068,9 +169099,9 @@ "source_file": "docs/api/admin.md", "source_location": "L468", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_appointment_management", - "confidence_score": 1.0 + "target": "api_admin_appointment_management" }, { "relation": "contains", @@ -169078,9 +169109,9 @@ "source_file": "docs/api/admin.md", "source_location": "L815", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_clinic_invitation_management", - "confidence_score": 1.0 + "target": "api_admin_clinic_invitation_management" }, { "relation": "contains", @@ -169088,9 +169119,9 @@ "source_file": "docs/api/admin.md", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_clinic_management", - "confidence_score": 1.0 + "target": "api_admin_clinic_management" }, { "relation": "contains", @@ -169098,9 +169129,9 @@ "source_file": "docs/api/admin.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_dashboard", - "confidence_score": 1.0 + "target": "api_admin_dashboard" }, { "relation": "contains", @@ -169108,9 +169139,9 @@ "source_file": "docs/api/admin.md", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_doctor_management", - "confidence_score": 1.0 + "target": "api_admin_doctor_management" }, { "relation": "contains", @@ -169118,9 +169149,9 @@ "source_file": "docs/api/admin.md", "source_location": "L583", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_payment_management", - "confidence_score": 1.0 + "target": "api_admin_payment_management" }, { "relation": "contains", @@ -169128,9 +169159,9 @@ "source_file": "docs/api/admin.md", "source_location": "L902", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_pre_registration_management", - "confidence_score": 1.0 + "target": "api_admin_pre_registration_management" }, { "relation": "contains", @@ -169138,9 +169169,9 @@ "source_file": "docs/api/admin.md", "source_location": "L714", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_rating_comment_management", - "confidence_score": 1.0 + "target": "api_admin_rating_comment_management" }, { "relation": "contains", @@ -169148,9 +169179,9 @@ "source_file": "docs/api/admin.md", "source_location": "L655", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_representation_management", - "confidence_score": 1.0 + "target": "api_admin_representation_management" }, { "relation": "contains", @@ -169158,9 +169189,9 @@ "source_file": "docs/api/admin.md", "source_location": "L694", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_secretary_management", - "confidence_score": 1.0 + "target": "api_admin_secretary_management" }, { "relation": "contains", @@ -169168,9 +169199,9 @@ "source_file": "docs/api/admin.md", "source_location": "L829", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_settings", - "confidence_score": 1.0 + "target": "api_admin_settings" }, { "relation": "contains", @@ -169178,9 +169209,9 @@ "source_file": "docs/api/admin.md", "source_location": "L618", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_settlement_management", - "confidence_score": 1.0 + "target": "api_admin_settlement_management" }, { "relation": "contains", @@ -169188,9 +169219,9 @@ "source_file": "docs/api/admin.md", "source_location": "L751", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_sms_management_admin", - "confidence_score": 1.0 + "target": "api_admin_sms_management_admin" }, { "relation": "contains", @@ -169198,9 +169229,9 @@ "source_file": "docs/api/admin.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_user_management", - "confidence_score": 1.0 + "target": "api_admin_user_management" }, { "relation": "contains", @@ -169208,9 +169239,9 @@ "source_file": "docs/api/admin.md", "source_location": "L972", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_admin_api", - "target": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", - "confidence_score": 1.0 + "target": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc" }, { "relation": "contains", @@ -169218,9 +169249,9 @@ "source_file": "docs/api/admin.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_get_api_v1_admin_dashboard_charts", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_dashboard_charts" }, { "relation": "contains", @@ -169228,9 +169259,9 @@ "source_file": "docs/api/admin.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_get_api_v1_admin_dashboard_recent", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_dashboard_recent" }, { "relation": "contains", @@ -169238,9 +169269,9 @@ "source_file": "docs/api/admin.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_get_api_v1_admin_dashboard_stats", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_dashboard_stats" }, { "relation": "contains", @@ -169248,9 +169279,9 @@ "source_file": "docs/api/admin.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_response_200", - "confidence_score": 1.0 + "target": "api_admin_response_200" }, { "relation": "contains", @@ -169258,9 +169289,9 @@ "source_file": "docs/api/admin.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_response_200_47", - "confidence_score": 1.0 + "target": "api_admin_response_200_47" }, { "relation": "contains", @@ -169268,9 +169299,9 @@ "source_file": "docs/api/admin.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_dashboard", - "target": "api_admin_response_200_80", - "confidence_score": 1.0 + "target": "api_admin_response_200_80" }, { "relation": "contains", @@ -169278,9 +169309,9 @@ "source_file": "docs/api/admin.md", "source_location": "L265", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_delete_api_v1_admin_users_uuid", - "confidence_score": 1.0 + "target": "api_admin_delete_api_v1_admin_users_uuid" }, { "relation": "contains", @@ -169288,9 +169319,9 @@ "source_file": "docs/api/admin.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_errors", - "confidence_score": 1.0 + "target": "api_admin_errors" }, { "relation": "contains", @@ -169298,9 +169329,9 @@ "source_file": "docs/api/admin.md", "source_location": "L276", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_errors_276", - "confidence_score": 1.0 + "target": "api_admin_errors_276" }, { "relation": "contains", @@ -169308,9 +169339,9 @@ "source_file": "docs/api/admin.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_get_api_v1_admin_users", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_users" }, { "relation": "contains", @@ -169318,9 +169349,9 @@ "source_file": "docs/api/admin.md", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_get_api_v1_admin_users_stats", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_users_stats" }, { "relation": "contains", @@ -169328,9 +169359,9 @@ "source_file": "docs/api/admin.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_get_api_v1_admin_users_uuid", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_users_uuid" }, { "relation": "contains", @@ -169338,9 +169369,9 @@ "source_file": "docs/api/admin.md", "source_location": "L252", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_post_api_v1_admin_users_uuid_status", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_users_uuid_status" }, { "relation": "contains", @@ -169348,9 +169379,9 @@ "source_file": "docs/api/admin.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_put_api_v1_admin_users_uuid", - "confidence_score": 1.0 + "target": "api_admin_put_api_v1_admin_users_uuid" }, { "relation": "contains", @@ -169358,9 +169389,9 @@ "source_file": "docs/api/admin.md", "source_location": "L228", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_put_api_v1_admin_users_uuid_role", - "confidence_score": 1.0 + "target": "api_admin_put_api_v1_admin_users_uuid_role" }, { "relation": "contains", @@ -169368,9 +169399,9 @@ "source_file": "docs/api/admin.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_query_parameters", - "confidence_score": 1.0 + "target": "api_admin_query_parameters" }, { "relation": "contains", @@ -169378,9 +169409,9 @@ "source_file": "docs/api/admin.md", "source_location": "L215", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_request_body_application_json", - "confidence_score": 1.0 + "target": "api_admin_request_body_application_json" }, { "relation": "contains", @@ -169388,9 +169419,9 @@ "source_file": "docs/api/admin.md", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_request_body_application_json_234", - "confidence_score": 1.0 + "target": "api_admin_request_body_application_json_234" }, { "relation": "contains", @@ -169398,9 +169429,9 @@ "source_file": "docs/api/admin.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_136", - "confidence_score": 1.0 + "target": "api_admin_response_200_136" }, { "relation": "contains", @@ -169408,9 +169439,9 @@ "source_file": "docs/api/admin.md", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_162", - "confidence_score": 1.0 + "target": "api_admin_response_200_162" }, { "relation": "contains", @@ -169418,9 +169449,9 @@ "source_file": "docs/api/admin.md", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_192", - "confidence_score": 1.0 + "target": "api_admin_response_200_192" }, { "relation": "contains", @@ -169428,9 +169459,9 @@ "source_file": "docs/api/admin.md", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_223", - "confidence_score": 1.0 + "target": "api_admin_response_200_223" }, { "relation": "contains", @@ -169438,9 +169469,9 @@ "source_file": "docs/api/admin.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_245", - "confidence_score": 1.0 + "target": "api_admin_response_200_245" }, { "relation": "contains", @@ -169448,9 +169479,9 @@ "source_file": "docs/api/admin.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_258", - "confidence_score": 1.0 + "target": "api_admin_response_200_258" }, { "relation": "contains", @@ -169458,9 +169489,9 @@ "source_file": "docs/api/admin.md", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_user_management", - "target": "api_admin_response_200_271", - "confidence_score": 1.0 + "target": "api_admin_response_200_271" }, { "relation": "contains", @@ -169468,9 +169499,9 @@ "source_file": "docs/api/admin.md", "source_location": "L328", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_get_api_v1_admin_doctors", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_doctors" }, { "relation": "contains", @@ -169478,9 +169509,9 @@ "source_file": "docs/api/admin.md", "source_location": "L365", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_get_api_v1_admin_doctors_stats", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_doctors_stats" }, { "relation": "contains", @@ -169488,9 +169519,9 @@ "source_file": "docs/api/admin.md", "source_location": "L307", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_post_api_v1_admin_clinic", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_clinic" }, { "relation": "contains", @@ -169498,9 +169529,9 @@ "source_file": "docs/api/admin.md", "source_location": "L287", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_post_api_v1_admin_doctors", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_doctors" }, { "relation": "contains", @@ -169508,9 +169539,9 @@ "source_file": "docs/api/admin.md", "source_location": "L388", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_post_api_v1_admin_doctors_uuid_status", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_doctors_uuid_status" }, { "relation": "contains", @@ -169518,9 +169549,9 @@ "source_file": "docs/api/admin.md", "source_location": "L334", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_query_parameters_334", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_334" }, { "relation": "contains", @@ -169528,9 +169559,9 @@ "source_file": "docs/api/admin.md", "source_location": "L345", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_response_200_345", - "confidence_score": 1.0 + "target": "api_admin_response_200_345" }, { "relation": "contains", @@ -169538,9 +169569,9 @@ "source_file": "docs/api/admin.md", "source_location": "L371", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_response_200_371", - "confidence_score": 1.0 + "target": "api_admin_response_200_371" }, { "relation": "contains", @@ -169548,9 +169579,9 @@ "source_file": "docs/api/admin.md", "source_location": "L394", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_doctor_management", - "target": "api_admin_response_200_394", - "confidence_score": 1.0 + "target": "api_admin_response_200_394" }, { "relation": "contains", @@ -169558,9 +169589,9 @@ "source_file": "docs/api/admin.md", "source_location": "L299", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_post_api_v1_admin_doctors", - "target": "api_admin_errors_299", - "confidence_score": 1.0 + "target": "api_admin_errors_299" }, { "relation": "contains", @@ -169568,9 +169599,9 @@ "source_file": "docs/api/admin.md", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_post_api_v1_admin_doctors", - "target": "api_admin_request_body_application_json_293", - "confidence_score": 1.0 + "target": "api_admin_request_body_application_json_293" }, { "relation": "contains", @@ -169578,9 +169609,9 @@ "source_file": "docs/api/admin.md", "source_location": "L319", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_post_api_v1_admin_clinic", - "target": "api_admin_errors_319", - "confidence_score": 1.0 + "target": "api_admin_errors_319" }, { "relation": "contains", @@ -169588,9 +169619,9 @@ "source_file": "docs/api/admin.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_post_api_v1_admin_clinic", - "target": "api_admin_request_body_application_json_313", - "confidence_score": 1.0 + "target": "api_admin_request_body_application_json_313" }, { "relation": "contains", @@ -169598,9 +169629,9 @@ "source_file": "docs/api/admin.md", "source_location": "L455", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_delete_api_v1_admin_clinic_uuid", - "confidence_score": 1.0 + "target": "api_admin_delete_api_v1_admin_clinic_uuid" }, { "relation": "contains", @@ -169608,9 +169639,9 @@ "source_file": "docs/api/admin.md", "source_location": "L448", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_errors_448", - "confidence_score": 1.0 + "target": "api_admin_errors_448" }, { "relation": "contains", @@ -169618,9 +169649,9 @@ "source_file": "docs/api/admin.md", "source_location": "L403", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_get_api_v1_admin_clinics", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_clinics" }, { "relation": "contains", @@ -169628,9 +169659,9 @@ "source_file": "docs/api/admin.md", "source_location": "L437", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_patch_api_v1_admin_clinic_uuid_status", - "confidence_score": 1.0 + "target": "api_admin_patch_api_v1_admin_clinic_uuid_status" }, { "relation": "contains", @@ -169638,9 +169669,9 @@ "source_file": "docs/api/admin.md", "source_location": "L409", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_query_parameters_409", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_409" }, { "relation": "contains", @@ -169648,9 +169679,9 @@ "source_file": "docs/api/admin.md", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_response_200_417", - "confidence_score": 1.0 + "target": "api_admin_response_200_417" }, { "relation": "contains", @@ -169658,9 +169689,9 @@ "source_file": "docs/api/admin.md", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_response_200_443", - "confidence_score": 1.0 + "target": "api_admin_response_200_443" }, { "relation": "contains", @@ -169668,9 +169699,9 @@ "source_file": "docs/api/admin.md", "source_location": "L461", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_clinic_management", - "target": "api_admin_response_200_461", - "confidence_score": 1.0 + "target": "api_admin_response_200_461" }, { "relation": "contains", @@ -169678,9 +169709,9 @@ "source_file": "docs/api/admin.md", "source_location": "L574", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_error_responses", - "confidence_score": 1.0 + "target": "api_admin_error_responses" }, { "relation": "contains", @@ -169688,9 +169719,9 @@ "source_file": "docs/api/admin.md", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_get_api_v1_admin_appointments", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_appointments" }, { "relation": "contains", @@ -169698,9 +169729,9 @@ "source_file": "docs/api/admin.md", "source_location": "L470", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_get_api_v1_admin_appointments_today_stats", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_appointments_today_stats" }, { "relation": "contains", @@ -169708,9 +169739,9 @@ "source_file": "docs/api/admin.md", "source_location": "L541", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_post_api_v1_admin_appointment", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_appointment" }, { "relation": "contains", @@ -169718,9 +169749,9 @@ "source_file": "docs/api/admin.md", "source_location": "L476", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_query_parameters_476", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_476" }, { "relation": "contains", @@ -169728,9 +169759,9 @@ "source_file": "docs/api/admin.md", "source_location": "L502", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_query_parameters_502", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_502" }, { "relation": "contains", @@ -169738,9 +169769,9 @@ "source_file": "docs/api/admin.md", "source_location": "L547", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_request_body", - "confidence_score": 1.0 + "target": "api_admin_request_body" }, { "relation": "contains", @@ -169748,9 +169779,9 @@ "source_file": "docs/api/admin.md", "source_location": "L481", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_response_200_481", - "confidence_score": 1.0 + "target": "api_admin_response_200_481" }, { "relation": "contains", @@ -169758,9 +169789,9 @@ "source_file": "docs/api/admin.md", "source_location": "L512", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_response_200_512", - "confidence_score": 1.0 + "target": "api_admin_response_200_512" }, { "relation": "contains", @@ -169768,9 +169799,9 @@ "source_file": "docs/api/admin.md", "source_location": "L561", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_appointment_management", - "target": "api_admin_response_201", - "confidence_score": 1.0 + "target": "api_admin_response_201" }, { "relation": "contains", @@ -169778,9 +169809,9 @@ "source_file": "docs/api/admin.md", "source_location": "L585", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_payment_management", - "target": "api_admin_get_api_v1_admin_payments", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_payments" }, { "relation": "contains", @@ -169788,9 +169819,9 @@ "source_file": "docs/api/admin.md", "source_location": "L591", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_payment_management", - "target": "api_admin_query_parameters_591", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_591" }, { "relation": "contains", @@ -169798,9 +169829,9 @@ "source_file": "docs/api/admin.md", "source_location": "L598", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_payment_management", - "target": "api_admin_response_200_598", - "confidence_score": 1.0 + "target": "api_admin_response_200_598" }, { "relation": "contains", @@ -169808,9 +169839,9 @@ "source_file": "docs/api/admin.md", "source_location": "L620", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_settlement_management", - "target": "api_admin_get_api_v1_admin_settlements", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_settlements" }, { "relation": "contains", @@ -169818,9 +169849,9 @@ "source_file": "docs/api/admin.md", "source_location": "L626", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_settlement_management", - "target": "api_admin_query_parameters_626", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_626" }, { "relation": "contains", @@ -169828,9 +169859,9 @@ "source_file": "docs/api/admin.md", "source_location": "L633", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_settlement_management", - "target": "api_admin_response_200_633", - "confidence_score": 1.0 + "target": "api_admin_response_200_633" }, { "relation": "contains", @@ -169838,9 +169869,9 @@ "source_file": "docs/api/admin.md", "source_location": "L657", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_representation_management", - "target": "api_admin_get_api_v1_admin_representations", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_representations" }, { "relation": "contains", @@ -169848,9 +169879,9 @@ "source_file": "docs/api/admin.md", "source_location": "L663", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_representation_management", - "target": "api_admin_query_parameters_663", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_663" }, { "relation": "contains", @@ -169858,9 +169889,9 @@ "source_file": "docs/api/admin.md", "source_location": "L671", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_representation_management", - "target": "api_admin_response_200_671", - "confidence_score": 1.0 + "target": "api_admin_response_200_671" }, { "relation": "contains", @@ -169868,9 +169899,9 @@ "source_file": "docs/api/admin.md", "source_location": "L696", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_secretary_management", - "target": "api_admin_get_api_v1_admin_secretaries", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_secretaries" }, { "relation": "contains", @@ -169878,9 +169909,9 @@ "source_file": "docs/api/admin.md", "source_location": "L702", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_secretary_management", - "target": "api_admin_query_parameters_702", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_702" }, { "relation": "contains", @@ -169888,9 +169919,9 @@ "source_file": "docs/api/admin.md", "source_location": "L709", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_secretary_management", - "target": "api_admin_response_200_709", - "confidence_score": 1.0 + "target": "api_admin_response_200_709" }, { "relation": "contains", @@ -169898,9 +169929,9 @@ "source_file": "docs/api/admin.md", "source_location": "L733", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_rating_comment_management", - "target": "api_admin_get_api_v1_admin_comments", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_comments" }, { "relation": "contains", @@ -169908,9 +169939,9 @@ "source_file": "docs/api/admin.md", "source_location": "L716", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_rating_comment_management", - "target": "api_admin_get_api_v1_admin_rates", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_rates" }, { "relation": "contains", @@ -169918,9 +169949,9 @@ "source_file": "docs/api/admin.md", "source_location": "L722", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_rating_comment_management", - "target": "api_admin_query_parameters_722", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_722" }, { "relation": "contains", @@ -169928,9 +169959,9 @@ "source_file": "docs/api/admin.md", "source_location": "L739", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_rating_comment_management", - "target": "api_admin_query_parameters_739", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_739" }, { "relation": "contains", @@ -169938,9 +169969,9 @@ "source_file": "docs/api/admin.md", "source_location": "L753", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_sms_management_admin", - "target": "api_admin_get_api_v1_admin_sms_logs", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_sms_logs" }, { "relation": "contains", @@ -169948,9 +169979,9 @@ "source_file": "docs/api/admin.md", "source_location": "L789", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_sms_management_admin", - "target": "api_admin_get_api_v1_admin_sms_templates", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_sms_templates" }, { "relation": "contains", @@ -169958,9 +169989,9 @@ "source_file": "docs/api/admin.md", "source_location": "L759", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_sms_management_admin", - "target": "api_admin_query_parameters_759", - "confidence_score": 1.0 + "target": "api_admin_query_parameters_759" }, { "relation": "contains", @@ -169968,9 +169999,9 @@ "source_file": "docs/api/admin.md", "source_location": "L766", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_sms_management_admin", - "target": "api_admin_response_200_766", - "confidence_score": 1.0 + "target": "api_admin_response_200_766" }, { "relation": "contains", @@ -169978,9 +170009,9 @@ "source_file": "docs/api/admin.md", "source_location": "L795", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_sms_management_admin", - "target": "api_admin_response_200_795", - "confidence_score": 1.0 + "target": "api_admin_response_200_795" }, { "relation": "contains", @@ -169988,9 +170019,9 @@ "source_file": "docs/api/admin.md", "source_location": "L831", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_settings", - "target": "api_admin_get_api_v1_admin_settings", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_settings" }, { "relation": "contains", @@ -169998,9 +170029,9 @@ "source_file": "docs/api/admin.md", "source_location": "L861", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_settings", - "target": "api_admin_patch_api_v1_admin_settings", - "confidence_score": 1.0 + "target": "api_admin_patch_api_v1_admin_settings" }, { "relation": "contains", @@ -170008,9 +170039,9 @@ "source_file": "docs/api/admin.md", "source_location": "L904", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_pre_registration_management", - "target": "api_admin_get_api_v1_admin_pre_registrations", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_pre_registrations" }, { "relation": "contains", @@ -170018,9 +170049,9 @@ "source_file": "docs/api/admin.md", "source_location": "L938", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_pre_registration_management", - "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_approve", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_approve" }, { "relation": "contains", @@ -170028,9 +170059,9 @@ "source_file": "docs/api/admin.md", "source_location": "L956", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_pre_registration_management", - "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_reject", - "confidence_score": 1.0 + "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_reject" }, { "relation": "contains", @@ -170038,9 +170069,9 @@ "source_file": "docs/api/admin.md", "source_location": "L990", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", - "target": "api_admin_get_api_v1_admin_financial_breakdowns", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_financial_breakdowns" }, { "relation": "contains", @@ -170048,9 +170079,9 @@ "source_file": "docs/api/admin.md", "source_location": "L1024", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", - "target": "api_admin_get_api_v1_admin_financial_summary", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_financial_summary" }, { "relation": "contains", @@ -170058,9 +170089,9 @@ "source_file": "docs/api/admin.md", "source_location": "L1042", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", - "target": "api_admin_get_api_v1_admin_settings_tax_history", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_settings_tax_history" }, { "relation": "contains", @@ -170068,9 +170099,9 @@ "source_file": "docs/api/admin.md", "source_location": "L1056", "weight": 1.0, + "confidence_score": 1.0, "source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", - "target": "api_admin_get_api_v1_admin_settlement_uuid", - "confidence_score": 1.0 + "target": "api_admin_get_api_v1_admin_settlement_uuid" }, { "relation": "contains", @@ -170078,9 +170109,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings", - "target": "api_appointment_settings_appointment_settings_api", - "confidence_score": 1.0 + "target": "api_appointment_settings_appointment_settings_api" }, { "relation": "contains", @@ -170088,9 +170119,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L572", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_appointment_settings_api", - "target": "api_appointment_settings_available_locations", - "confidence_score": 1.0 + "target": "api_appointment_settings_available_locations" }, { "relation": "contains", @@ -170098,9 +170129,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_appointment_settings_api", - "target": "api_appointment_settings_date_overrides", - "confidence_score": 1.0 + "target": "api_appointment_settings_date_overrides" }, { "relation": "contains", @@ -170108,9 +170139,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L420", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_appointment_settings_api", - "target": "api_appointment_settings_holidays", - "confidence_score": 1.0 + "target": "api_appointment_settings_holidays" }, { "relation": "contains", @@ -170118,9 +170149,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L547", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_appointment_settings_api", - "target": "api_appointment_settings_slot_calculation_logic_reference", - "confidence_score": 1.0 + "target": "api_appointment_settings_slot_calculation_logic_reference" }, { "relation": "contains", @@ -170128,9 +170159,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_appointment_settings_api", - "target": "api_appointment_settings_weekly_schedule", - "confidence_score": 1.0 + "target": "api_appointment_settings_weekly_schedule" }, { "relation": "contains", @@ -170138,9 +170169,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_day_index_convention", - "confidence_score": 1.0 + "target": "api_appointment_settings_day_index_convention" }, { "relation": "contains", @@ -170148,9 +170179,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L221", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_delete_api_v1_booking_setting_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_delete_api_v1_booking_setting_uuid" }, { "relation": "contains", @@ -170158,9 +170189,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_errors", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors" }, { "relation": "contains", @@ -170168,9 +170199,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_errors_170", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_170" }, { "relation": "contains", @@ -170178,9 +170209,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L212", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_errors_212", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_212" }, { "relation": "contains", @@ -170188,9 +170219,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L234", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_errors_234", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_234" }, { "relation": "contains", @@ -170198,9 +170229,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_get_api_v1_appointment_settings_weekly_schedule_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_weekly_schedule_uuid" }, { "relation": "contains", @@ -170208,9 +170239,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_patch_api_v1_appointment_settings_weekly_schedule_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_patch_api_v1_appointment_settings_weekly_schedule_uuid" }, { "relation": "contains", @@ -170218,9 +170249,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_post_api_v1_appointment_settings_weekly_schedule", - "confidence_score": 1.0 + "target": "api_appointment_settings_post_api_v1_appointment_settings_weekly_schedule" }, { "relation": "contains", @@ -170228,9 +170259,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_request_body", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body" }, { "relation": "contains", @@ -170238,9 +170269,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_request_body_application_json", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body_application_json" }, { "relation": "contains", @@ -170248,9 +170279,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_response_200", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200" }, { "relation": "contains", @@ -170258,9 +170289,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_response_200_209", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_209" }, { "relation": "contains", @@ -170268,9 +170299,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_response_200_229", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_229" }, { "relation": "contains", @@ -170278,9 +170309,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_weekly_schedule", - "target": "api_appointment_settings_response_201", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_201" }, { "relation": "contains", @@ -170288,9 +170319,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L407", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_delete_api_v1_appointment_settings_date_override_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_delete_api_v1_appointment_settings_date_override_uuid" }, { "relation": "contains", @@ -170298,9 +170329,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L347", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_errors_347", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_347" }, { "relation": "contains", @@ -170308,9 +170339,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L398", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_errors_398", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_398" }, { "relation": "contains", @@ -170318,9 +170349,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L247", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_get_api_v1_appointment_settings_date_override_list_doctoruuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_date_override_list_doctoruuid" }, { "relation": "contains", @@ -170328,9 +170359,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L357", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_get_api_v1_appointment_settings_date_override_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_date_override_uuid" }, { "relation": "contains", @@ -170338,9 +170369,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_patch_api_v1_appointment_settings_date_override_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_patch_api_v1_appointment_settings_date_override_uuid" }, { "relation": "contains", @@ -170348,9 +170379,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_post_api_v1_appointment_settings_date_override", - "confidence_score": 1.0 + "target": "api_appointment_settings_post_api_v1_appointment_settings_date_override" }, { "relation": "contains", @@ -170358,9 +170389,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_request_body_283", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body_283" }, { "relation": "contains", @@ -170368,9 +170399,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_request_body_all_optional", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body_all_optional" }, { "relation": "contains", @@ -170378,9 +170409,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_response_200_253", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_253" }, { "relation": "contains", @@ -170388,9 +170419,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L363", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_response_200_363", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_363" }, { "relation": "contains", @@ -170398,9 +170429,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L395", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_response_200_395", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_395" }, { "relation": "contains", @@ -170408,9 +170439,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L413", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_response_200_413", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_413" }, { "relation": "contains", @@ -170418,9 +170449,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_date_overrides", - "target": "api_appointment_settings_response_201_329", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_201_329" }, { "relation": "contains", @@ -170428,9 +170459,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L534", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_delete_api_v1_appointment_settings_holidays_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_delete_api_v1_appointment_settings_holidays_uuid" }, { "relation": "contains", @@ -170438,9 +170469,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L495", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_errors_495", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_495" }, { "relation": "contains", @@ -170448,9 +170479,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L424", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_get_api_v1_appointment_settings_holidays_list_doctoruuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_holidays_list_doctoruuid" }, { "relation": "contains", @@ -170458,9 +170489,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_get_api_v1_appointment_settings_holidays_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_holidays_uuid" }, { "relation": "contains", @@ -170468,9 +170499,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L513", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_patch_api_v1_appointment_settings_holidays_uuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_patch_api_v1_appointment_settings_holidays_uuid" }, { "relation": "contains", @@ -170478,9 +170509,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L454", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_post_api_v1_appointment_settings_holidays", - "confidence_score": 1.0 + "target": "api_appointment_settings_post_api_v1_appointment_settings_holidays" }, { "relation": "contains", @@ -170488,9 +170519,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L460", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_request_body_460", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body_460" }, { "relation": "contains", @@ -170498,9 +170529,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L519", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_request_body_all_optional_519", - "confidence_score": 1.0 + "target": "api_appointment_settings_request_body_all_optional_519" }, { "relation": "contains", @@ -170508,9 +170539,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_response_200_430", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_430" }, { "relation": "contains", @@ -170518,9 +170549,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_response_200_529", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_529" }, { "relation": "contains", @@ -170528,9 +170559,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L540", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_response_200_540", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_540" }, { "relation": "contains", @@ -170538,9 +170569,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L477", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_holidays", - "target": "api_appointment_settings_response_201_477", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_201_477" }, { "relation": "contains", @@ -170548,9 +170579,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L574", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_available_locations", - "target": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", - "confidence_score": 1.0 + "target": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid" }, { "relation": "contains", @@ -170558,9 +170589,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L623", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", - "target": "api_appointment_settings_errors_623", - "confidence_score": 1.0 + "target": "api_appointment_settings_errors_623" }, { "relation": "contains", @@ -170568,9 +170599,9 @@ "source_file": "docs/api/appointment-settings.md", "source_location": "L580", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", - "target": "api_appointment_settings_response_200_580", - "confidence_score": 1.0 + "target": "api_appointment_settings_response_200_580" }, { "relation": "contains", @@ -170578,9 +170609,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment", - "target": "api_appointment_appointment_api", - "confidence_score": 1.0 + "target": "api_appointment_appointment_api" }, { "relation": "contains", @@ -170588,9 +170619,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid" }, { "relation": "contains", @@ -170598,9 +170629,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_appointment_slots", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_appointment_slots" }, { "relation": "contains", @@ -170608,9 +170639,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L205", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_appointment_uuid", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_appointment_uuid" }, { "relation": "contains", @@ -170618,9 +170649,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_appointments_doctor_doctoruuid", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_appointments_doctor_doctoruuid" }, { "relation": "contains", @@ -170628,9 +170659,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L302", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_appointments_user", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_appointments_user" }, { "relation": "contains", @@ -170638,9 +170669,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_get_api_v1_my_appointments", - "confidence_score": 1.0 + "target": "api_appointment_get_api_v1_my_appointments" }, { "relation": "contains", @@ -170648,9 +170679,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L337", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_patch_api_v1_appointment_uuid_status", - "confidence_score": 1.0 + "target": "api_appointment_patch_api_v1_appointment_uuid_status" }, { "relation": "contains", @@ -170658,9 +170689,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_post_api_v1_appointment", - "confidence_score": 1.0 + "target": "api_appointment_post_api_v1_appointment" }, { "relation": "contains", @@ -170668,9 +170699,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L382", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_appointment_api", - "target": "api_appointment_post_api_v1_my_appointment", - "confidence_score": 1.0 + "target": "api_appointment_post_api_v1_my_appointment" }, { "relation": "contains", @@ -170678,9 +170709,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_slots", - "target": "api_appointment_errors", - "confidence_score": 1.0 + "target": "api_appointment_errors" }, { "relation": "contains", @@ -170688,9 +170719,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_slots", - "target": "api_appointment_query_parameters", - "confidence_score": 1.0 + "target": "api_appointment_query_parameters" }, { "relation": "contains", @@ -170698,9 +170729,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_slots", - "target": "api_appointment_response_200", - "confidence_score": 1.0 + "target": "api_appointment_response_200" }, { "relation": "contains", @@ -170708,9 +170739,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "target": "api_appointment_errors_112", - "confidence_score": 1.0 + "target": "api_appointment_errors_112" }, { "relation": "contains", @@ -170718,9 +170749,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "target": "api_appointment_path_parameters", - "confidence_score": 1.0 + "target": "api_appointment_path_parameters" }, { "relation": "contains", @@ -170728,9 +170759,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "target": "api_appointment_query_parameters_82", - "confidence_score": 1.0 + "target": "api_appointment_query_parameters_82" }, { "relation": "contains", @@ -170738,9 +170769,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", - "target": "api_appointment_response_200_90", - "confidence_score": 1.0 + "target": "api_appointment_response_200_90" }, { "relation": "contains", @@ -170748,9 +170779,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_appointment", - "target": "api_appointment_errors_195", - "confidence_score": 1.0 + "target": "api_appointment_errors_195" }, { "relation": "contains", @@ -170758,9 +170789,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_appointment", - "target": "api_appointment_request_body_application_json", - "confidence_score": 1.0 + "target": "api_appointment_request_body_application_json" }, { "relation": "contains", @@ -170768,9 +170799,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_appointment", - "target": "api_appointment_response_201", - "confidence_score": 1.0 + "target": "api_appointment_response_201" }, { "relation": "contains", @@ -170778,9 +170809,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L251", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_uuid", - "target": "api_appointment_errors_251", - "confidence_score": 1.0 + "target": "api_appointment_errors_251" }, { "relation": "contains", @@ -170788,9 +170819,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_uuid", - "target": "api_appointment_path_parameters_211", - "confidence_score": 1.0 + "target": "api_appointment_path_parameters_211" }, { "relation": "contains", @@ -170798,9 +170829,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointment_uuid", - "target": "api_appointment_response_200_216", - "confidence_score": 1.0 + "target": "api_appointment_response_200_216" }, { "relation": "contains", @@ -170808,9 +170839,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_doctor_doctoruuid", - "target": "api_appointment_errors_293", - "confidence_score": 1.0 + "target": "api_appointment_errors_293" }, { "relation": "contains", @@ -170818,9 +170849,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L266", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_doctor_doctoruuid", - "target": "api_appointment_path_parameters_266", - "confidence_score": 1.0 + "target": "api_appointment_path_parameters_266" }, { "relation": "contains", @@ -170828,9 +170859,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_doctor_doctoruuid", - "target": "api_appointment_query_parameters_271", - "confidence_score": 1.0 + "target": "api_appointment_query_parameters_271" }, { "relation": "contains", @@ -170838,9 +170869,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L276", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_doctor_doctoruuid", - "target": "api_appointment_response_200_276", - "confidence_score": 1.0 + "target": "api_appointment_response_200_276" }, { "relation": "contains", @@ -170848,9 +170879,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L330", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_user", - "target": "api_appointment_errors_330", - "confidence_score": 1.0 + "target": "api_appointment_errors_330" }, { "relation": "contains", @@ -170858,9 +170889,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_user", - "target": "api_appointment_query_parameters_308", - "confidence_score": 1.0 + "target": "api_appointment_query_parameters_308" }, { "relation": "contains", @@ -170868,9 +170899,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_appointments_user", - "target": "api_appointment_response_200_313", - "confidence_score": 1.0 + "target": "api_appointment_response_200_313" }, { "relation": "contains", @@ -170878,9 +170909,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L371", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_patch_api_v1_appointment_uuid_status", - "target": "api_appointment_errors_371", - "confidence_score": 1.0 + "target": "api_appointment_errors_371" }, { "relation": "contains", @@ -170888,9 +170919,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L343", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_patch_api_v1_appointment_uuid_status", - "target": "api_appointment_path_parameters_343", - "confidence_score": 1.0 + "target": "api_appointment_path_parameters_343" }, { "relation": "contains", @@ -170898,9 +170929,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L348", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_patch_api_v1_appointment_uuid_status", - "target": "api_appointment_request_body", - "confidence_score": 1.0 + "target": "api_appointment_request_body" }, { "relation": "contains", @@ -170908,9 +170939,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L368", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_patch_api_v1_appointment_uuid_status", - "target": "api_appointment_response_200_368", - "confidence_score": 1.0 + "target": "api_appointment_response_200_368" }, { "relation": "contains", @@ -170918,9 +170949,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_my_appointment", - "target": "api_appointment_error_responses", - "confidence_score": 1.0 + "target": "api_appointment_error_responses" }, { "relation": "contains", @@ -170928,9 +170959,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L388", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_my_appointment", - "target": "api_appointment_request_body_388", - "confidence_score": 1.0 + "target": "api_appointment_request_body_388" }, { "relation": "contains", @@ -170938,9 +170969,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L402", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_post_api_v1_my_appointment", - "target": "api_appointment_response_201_402", - "confidence_score": 1.0 + "target": "api_appointment_response_201_402" }, { "relation": "contains", @@ -170948,9 +170979,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L440", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_my_appointments", - "target": "api_appointment_query_parameters_440", - "confidence_score": 1.0 + "target": "api_appointment_query_parameters_440" }, { "relation": "contains", @@ -170958,9 +170989,9 @@ "source_file": "docs/api/appointment.md", "source_location": "L449", "weight": 1.0, + "confidence_score": 1.0, "source": "api_appointment_get_api_v1_my_appointments", - "target": "api_appointment_response_200_449", - "confidence_score": 1.0 + "target": "api_appointment_response_200_449" }, { "relation": "contains", @@ -170968,9 +170999,9 @@ "source_file": "docs/api/auth.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth", - "target": "api_auth_authentication_api", - "confidence_score": 1.0 + "target": "api_auth_authentication_api" }, { "relation": "contains", @@ -170978,9 +171009,9 @@ "source_file": "docs/api/auth.md", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_delete_api_v1_notification_mobile_target", - "confidence_score": 1.0 + "target": "api_auth_delete_api_v1_notification_mobile_target" }, { "relation": "contains", @@ -170988,9 +171019,9 @@ "source_file": "docs/api/auth.md", "source_location": "L458", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_get_api_v1_notification_mobile_target", - "confidence_score": 1.0 + "target": "api_auth_get_api_v1_notification_mobile_target" }, { "relation": "contains", @@ -170998,9 +171029,9 @@ "source_file": "docs/api/auth.md", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_get_oauth_userinfo", - "confidence_score": 1.0 + "target": "api_auth_get_oauth_userinfo" }, { "relation": "contains", @@ -171008,9 +171039,9 @@ "source_file": "docs/api/auth.md", "source_location": "L369", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_notification_mobile_otp", - "confidence_score": 1.0 + "target": "api_auth_notification_mobile_otp" }, { "relation": "contains", @@ -171018,9 +171049,9 @@ "source_file": "docs/api/auth.md", "source_location": "L325", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_auth_switch_context", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_auth_switch_context" }, { "relation": "contains", @@ -171028,9 +171059,9 @@ "source_file": "docs/api/auth.md", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_notification_mobile_request_otp", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_notification_mobile_request_otp" }, { "relation": "contains", @@ -171038,9 +171069,9 @@ "source_file": "docs/api/auth.md", "source_location": "L420", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_notification_mobile_verify", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_notification_mobile_verify" }, { "relation": "contains", @@ -171048,9 +171079,9 @@ "source_file": "docs/api/auth.md", "source_location": "L537", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_pre_registration", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_pre_registration" }, { "relation": "contains", @@ -171058,9 +171089,9 @@ "source_file": "docs/api/auth.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_login", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_login" }, { "relation": "contains", @@ -171068,9 +171099,9 @@ "source_file": "docs/api/auth.md", "source_location": "L584", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_otp_login", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_otp_login" }, { "relation": "contains", @@ -171078,9 +171109,9 @@ "source_file": "docs/api/auth.md", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_register", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_register" }, { "relation": "contains", @@ -171088,9 +171119,9 @@ "source_file": "docs/api/auth.md", "source_location": "L620", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_reset_password", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_reset_password" }, { "relation": "contains", @@ -171098,9 +171129,9 @@ "source_file": "docs/api/auth.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_send_code", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_send_code" }, { "relation": "contains", @@ -171108,9 +171139,9 @@ "source_file": "docs/api/auth.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_api_v1_user_verify_code", - "confidence_score": 1.0 + "target": "api_auth_post_api_v1_user_verify_code" }, { "relation": "contains", @@ -171118,9 +171149,9 @@ "source_file": "docs/api/auth.md", "source_location": "L508", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_oauth_logout", - "confidence_score": 1.0 + "target": "api_auth_post_oauth_logout" }, { "relation": "contains", @@ -171128,9 +171159,9 @@ "source_file": "docs/api/auth.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_oauth_token", - "confidence_score": 1.0 + "target": "api_auth_post_oauth_token" }, { "relation": "contains", @@ -171138,9 +171169,9 @@ "source_file": "docs/api/auth.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_authentication_api", - "target": "api_auth_post_oauth_token_refresh", - "confidence_score": 1.0 + "target": "api_auth_post_oauth_token_refresh" }, { "relation": "contains", @@ -171148,9 +171179,9 @@ "source_file": "docs/api/auth.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_send_code", - "target": "api_auth_errors", - "confidence_score": 1.0 + "target": "api_auth_errors" }, { "relation": "contains", @@ -171158,9 +171189,9 @@ "source_file": "docs/api/auth.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_send_code", - "target": "api_auth_request_body", - "confidence_score": 1.0 + "target": "api_auth_request_body" }, { "relation": "contains", @@ -171168,9 +171199,9 @@ "source_file": "docs/api/auth.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_send_code", - "target": "api_auth_response_200", - "confidence_score": 1.0 + "target": "api_auth_response_200" }, { "relation": "contains", @@ -171178,9 +171209,9 @@ "source_file": "docs/api/auth.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_verify_code", - "target": "api_auth_errors_77", - "confidence_score": 1.0 + "target": "api_auth_errors_77" }, { "relation": "contains", @@ -171188,9 +171219,9 @@ "source_file": "docs/api/auth.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_verify_code", - "target": "api_auth_request_body_50", - "confidence_score": 1.0 + "target": "api_auth_request_body_50" }, { "relation": "contains", @@ -171198,9 +171229,9 @@ "source_file": "docs/api/auth.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_verify_code", - "target": "api_auth_response_200_63", - "confidence_score": 1.0 + "target": "api_auth_response_200_63" }, { "relation": "contains", @@ -171208,9 +171239,9 @@ "source_file": "docs/api/auth.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_register", - "target": "api_auth_errors_117", - "confidence_score": 1.0 + "target": "api_auth_errors_117" }, { "relation": "contains", @@ -171218,9 +171249,9 @@ "source_file": "docs/api/auth.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_register", - "target": "api_auth_request_body_93", - "confidence_score": 1.0 + "target": "api_auth_request_body_93" }, { "relation": "contains", @@ -171228,9 +171259,9 @@ "source_file": "docs/api/auth.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_register", - "target": "api_auth_response_201", - "confidence_score": 1.0 + "target": "api_auth_response_201" }, { "relation": "contains", @@ -171238,9 +171269,9 @@ "source_file": "docs/api/auth.md", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_login", - "target": "api_auth_errors_157", - "confidence_score": 1.0 + "target": "api_auth_errors_157" }, { "relation": "contains", @@ -171248,9 +171279,9 @@ "source_file": "docs/api/auth.md", "source_location": "L131", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_login", - "target": "api_auth_request_body_131", - "confidence_score": 1.0 + "target": "api_auth_request_body_131" }, { "relation": "contains", @@ -171258,9 +171289,9 @@ "source_file": "docs/api/auth.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_login", - "target": "api_auth_response_200_144", - "confidence_score": 1.0 + "target": "api_auth_response_200_144" }, { "relation": "contains", @@ -171268,9 +171299,9 @@ "source_file": "docs/api/auth.md", "source_location": "L199", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token", - "target": "api_auth_errors_199", - "confidence_score": 1.0 + "target": "api_auth_errors_199" }, { "relation": "contains", @@ -171278,9 +171309,9 @@ "source_file": "docs/api/auth.md", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token", - "target": "api_auth_request_body_172", - "confidence_score": 1.0 + "target": "api_auth_request_body_172" }, { "relation": "contains", @@ -171288,9 +171319,9 @@ "source_file": "docs/api/auth.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token", - "target": "api_auth_response_200_185", - "confidence_score": 1.0 + "target": "api_auth_response_200_185" }, { "relation": "contains", @@ -171298,9 +171329,9 @@ "source_file": "docs/api/auth.md", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token_refresh", - "target": "api_auth_errors_230", - "confidence_score": 1.0 + "target": "api_auth_errors_230" }, { "relation": "contains", @@ -171308,9 +171339,9 @@ "source_file": "docs/api/auth.md", "source_location": "L215", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token_refresh", - "target": "api_auth_request_body_215", - "confidence_score": 1.0 + "target": "api_auth_request_body_215" }, { "relation": "contains", @@ -171318,9 +171349,9 @@ "source_file": "docs/api/auth.md", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_token_refresh", - "target": "api_auth_response_200_222", - "confidence_score": 1.0 + "target": "api_auth_response_200_222" }, { "relation": "contains", @@ -171328,9 +171359,9 @@ "source_file": "docs/api/auth.md", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_get_oauth_userinfo", - "target": "api_auth_errors_318", - "confidence_score": 1.0 + "target": "api_auth_errors_318" }, { "relation": "contains", @@ -171338,9 +171369,9 @@ "source_file": "docs/api/auth.md", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_get_oauth_userinfo", - "target": "api_auth_headers", - "confidence_score": 1.0 + "target": "api_auth_headers" }, { "relation": "contains", @@ -171348,9 +171379,9 @@ "source_file": "docs/api/auth.md", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_get_oauth_userinfo", - "target": "api_auth_response_200_248", - "confidence_score": 1.0 + "target": "api_auth_response_200_248" }, { "relation": "contains", @@ -171358,9 +171389,9 @@ "source_file": "docs/api/auth.md", "source_location": "L360", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_auth_switch_context", - "target": "api_auth_errors_360", - "confidence_score": 1.0 + "target": "api_auth_errors_360" }, { "relation": "contains", @@ -171368,9 +171399,9 @@ "source_file": "docs/api/auth.md", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_auth_switch_context", - "target": "api_auth_request_body_331", - "confidence_score": 1.0 + "target": "api_auth_request_body_331" }, { "relation": "contains", @@ -171378,9 +171409,9 @@ "source_file": "docs/api/auth.md", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_auth_switch_context", - "target": "api_auth_response_200_342", - "confidence_score": 1.0 + "target": "api_auth_response_200_342" }, { "relation": "contains", @@ -171388,9 +171419,9 @@ "source_file": "docs/api/auth.md", "source_location": "L407", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_request_otp", - "target": "api_auth_errors_407", - "confidence_score": 1.0 + "target": "api_auth_errors_407" }, { "relation": "contains", @@ -171398,9 +171429,9 @@ "source_file": "docs/api/auth.md", "source_location": "L413", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_request_otp", - "target": "api_auth_notes", - "confidence_score": 1.0 + "target": "api_auth_notes" }, { "relation": "contains", @@ -171408,9 +171439,9 @@ "source_file": "docs/api/auth.md", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_request_otp", - "target": "api_auth_request_body_383", - "confidence_score": 1.0 + "target": "api_auth_request_body_383" }, { "relation": "contains", @@ -171418,9 +171449,9 @@ "source_file": "docs/api/auth.md", "source_location": "L396", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_request_otp", - "target": "api_auth_response_200_396", - "confidence_score": 1.0 + "target": "api_auth_response_200_396" }, { "relation": "contains", @@ -171428,9 +171459,9 @@ "source_file": "docs/api/auth.md", "source_location": "L450", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_verify", - "target": "api_auth_errors_450", - "confidence_score": 1.0 + "target": "api_auth_errors_450" }, { "relation": "contains", @@ -171438,9 +171469,9 @@ "source_file": "docs/api/auth.md", "source_location": "L426", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_verify", - "target": "api_auth_request_body_426", - "confidence_score": 1.0 + "target": "api_auth_request_body_426" }, { "relation": "contains", @@ -171448,9 +171479,9 @@ "source_file": "docs/api/auth.md", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_notification_mobile_verify", - "target": "api_auth_response_200_439", - "confidence_score": 1.0 + "target": "api_auth_response_200_439" }, { "relation": "contains", @@ -171458,9 +171489,9 @@ "source_file": "docs/api/auth.md", "source_location": "L477", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_get_api_v1_notification_mobile_target", - "target": "api_auth_errors_477", - "confidence_score": 1.0 + "target": "api_auth_errors_477" }, { "relation": "contains", @@ -171468,9 +171499,9 @@ "source_file": "docs/api/auth.md", "source_location": "L465", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_get_api_v1_notification_mobile_target", - "target": "api_auth_response_200_465", - "confidence_score": 1.0 + "target": "api_auth_response_200_465" }, { "relation": "contains", @@ -171478,9 +171509,9 @@ "source_file": "docs/api/auth.md", "source_location": "L501", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_delete_api_v1_notification_mobile_target", - "target": "api_auth_errors_501", - "confidence_score": 1.0 + "target": "api_auth_errors_501" }, { "relation": "contains", @@ -171488,9 +171519,9 @@ "source_file": "docs/api/auth.md", "source_location": "L491", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_delete_api_v1_notification_mobile_target", - "target": "api_auth_response_200_491", - "confidence_score": 1.0 + "target": "api_auth_response_200_491" }, { "relation": "contains", @@ -171498,9 +171529,9 @@ "source_file": "docs/api/auth.md", "source_location": "L514", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_logout", - "target": "api_auth_request_body_514", - "confidence_score": 1.0 + "target": "api_auth_request_body_514" }, { "relation": "contains", @@ -171508,9 +171539,9 @@ "source_file": "docs/api/auth.md", "source_location": "L525", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_oauth_logout", - "target": "api_auth_response_200_525", - "confidence_score": 1.0 + "target": "api_auth_response_200_525" }, { "relation": "contains", @@ -171518,9 +171549,9 @@ "source_file": "docs/api/auth.md", "source_location": "L576", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_pre_registration", - "target": "api_auth_error_codes", - "confidence_score": 1.0 + "target": "api_auth_error_codes" }, { "relation": "contains", @@ -171528,9 +171559,9 @@ "source_file": "docs/api/auth.md", "source_location": "L543", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_pre_registration", - "target": "api_auth_request_body_543", - "confidence_score": 1.0 + "target": "api_auth_request_body_543" }, { "relation": "contains", @@ -171538,9 +171569,9 @@ "source_file": "docs/api/auth.md", "source_location": "L568", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_pre_registration", - "target": "api_auth_response_200_568", - "confidence_score": 1.0 + "target": "api_auth_response_200_568" }, { "relation": "contains", @@ -171548,9 +171579,9 @@ "source_file": "docs/api/auth.md", "source_location": "L610", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_otp_login", - "target": "api_auth_error_codes_610", - "confidence_score": 1.0 + "target": "api_auth_error_codes_610" }, { "relation": "contains", @@ -171558,9 +171589,9 @@ "source_file": "docs/api/auth.md", "source_location": "L590", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_otp_login", - "target": "api_auth_request_body_590", - "confidence_score": 1.0 + "target": "api_auth_request_body_590" }, { "relation": "contains", @@ -171568,9 +171599,9 @@ "source_file": "docs/api/auth.md", "source_location": "L599", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_otp_login", - "target": "api_auth_response_200_599", - "confidence_score": 1.0 + "target": "api_auth_response_200_599" }, { "relation": "contains", @@ -171578,9 +171609,9 @@ "source_file": "docs/api/auth.md", "source_location": "L647", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_reset_password", - "target": "api_auth_error_codes_647", - "confidence_score": 1.0 + "target": "api_auth_error_codes_647" }, { "relation": "contains", @@ -171588,9 +171619,9 @@ "source_file": "docs/api/auth.md", "source_location": "L626", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_reset_password", - "target": "api_auth_request_body_626", - "confidence_score": 1.0 + "target": "api_auth_request_body_626" }, { "relation": "contains", @@ -171598,9 +171629,9 @@ "source_file": "docs/api/auth.md", "source_location": "L639", "weight": 1.0, + "confidence_score": 1.0, "source": "api_auth_post_api_v1_user_reset_password", - "target": "api_auth_response_200_639", - "confidence_score": 1.0 + "target": "api_auth_response_200_639" }, { "relation": "contains", @@ -171608,9 +171639,9 @@ "source_file": "docs/api/billing.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing", - "target": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -171618,9 +171649,9 @@ "source_file": "docs/api/billing.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing", - "target": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "confidence_score": 1.0 + "target": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5" }, { "relation": "references", @@ -171628,9 +171659,9 @@ "source_file": "docs/api/patient.md", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient", - "target": "api_billing", - "confidence_score": 1.0 + "target": "api_billing" }, { "relation": "contains", @@ -171638,9 +171669,9 @@ "source_file": "docs/api/billing.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "target": "api_billing_get_api_v1_billing_invoices_uuid", - "confidence_score": 1.0 + "target": "api_billing_get_api_v1_billing_invoices_uuid" }, { "relation": "contains", @@ -171648,9 +171679,9 @@ "source_file": "docs/api/billing.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "target": "api_billing_post_api_v1_billing_invoices", - "confidence_score": 1.0 + "target": "api_billing_post_api_v1_billing_invoices" }, { "relation": "contains", @@ -171658,9 +171689,9 @@ "source_file": "docs/api/billing.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "target": "api_billing_post_api_v1_billing_invoices_uuid_finalize", - "confidence_score": 1.0 + "target": "api_billing_post_api_v1_billing_invoices_uuid_finalize" }, { "relation": "contains", @@ -171668,9 +171699,9 @@ "source_file": "docs/api/billing.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "target": "api_billing_\u0646\u06a9\u0627\u062a", - "confidence_score": 1.0 + "target": "api_billing_\u0646\u06a9\u0627\u062a" }, { "relation": "contains", @@ -171678,9 +171709,9 @@ "source_file": "docs/api/billing.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", - "target": "api_billing_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_invoice", - "confidence_score": 1.0 + "target": "api_billing_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_invoice" }, { "relation": "contains", @@ -171688,9 +171719,9 @@ "source_file": "docs/api/billing.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "target": "api_billing_get_api_v1_billing_claims", - "confidence_score": 1.0 + "target": "api_billing_get_api_v1_billing_claims" }, { "relation": "contains", @@ -171698,9 +171729,9 @@ "source_file": "docs/api/billing.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "target": "api_billing_get_api_v1_billing_reports_insurance_debt", - "confidence_score": 1.0 + "target": "api_billing_get_api_v1_billing_reports_insurance_debt" }, { "relation": "contains", @@ -171708,9 +171739,9 @@ "source_file": "docs/api/billing.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "target": "api_billing_post_api_v1_billing_claims", - "confidence_score": 1.0 + "target": "api_billing_post_api_v1_billing_claims" }, { "relation": "contains", @@ -171718,9 +171749,9 @@ "source_file": "docs/api/billing.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "target": "api_billing_post_api_v1_billing_claims_uuid_action", - "confidence_score": 1.0 + "target": "api_billing_post_api_v1_billing_claims_uuid_action" }, { "relation": "contains", @@ -171728,9 +171759,9 @@ "source_file": "docs/api/billing.md", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "api_billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", - "target": "api_billing_\u0627\u0631\u0633\u0627\u0644_\u0645\u0637\u0627\u0644\u0628\u0647_claimsubmitter", - "confidence_score": 1.0 + "target": "api_billing_\u0627\u0631\u0633\u0627\u0644_\u0645\u0637\u0627\u0644\u0628\u0647_claimsubmitter" }, { "relation": "contains", @@ -171738,9 +171769,9 @@ "source_file": "docs/api/blog.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog", - "target": "api_blog_blog_api", - "confidence_score": 1.0 + "target": "api_blog_blog_api" }, { "relation": "contains", @@ -171748,9 +171779,9 @@ "source_file": "docs/api/blog.md", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_delete_api_v1_blog_uuid", - "confidence_score": 1.0 + "target": "api_blog_delete_api_v1_blog_uuid" }, { "relation": "contains", @@ -171758,9 +171789,9 @@ "source_file": "docs/api/blog.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_get_api_v1_blog_slug", - "confidence_score": 1.0 + "target": "api_blog_get_api_v1_blog_slug" }, { "relation": "contains", @@ -171768,9 +171799,9 @@ "source_file": "docs/api/blog.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_get_api_v1_blogs", - "confidence_score": 1.0 + "target": "api_blog_get_api_v1_blogs" }, { "relation": "contains", @@ -171778,9 +171809,9 @@ "source_file": "docs/api/blog.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_patch_api_v1_blog_uuid", - "confidence_score": 1.0 + "target": "api_blog_patch_api_v1_blog_uuid" }, { "relation": "contains", @@ -171788,9 +171819,9 @@ "source_file": "docs/api/blog.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_post_api_v1_blog", - "confidence_score": 1.0 + "target": "api_blog_post_api_v1_blog" }, { "relation": "contains", @@ -171798,9 +171829,9 @@ "source_file": "docs/api/blog.md", "source_location": "L203", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_blog_api", - "target": "api_blog_post_file_upload_clinic_pro_blog_field_image", - "confidence_score": 1.0 + "target": "api_blog_post_file_upload_clinic_pro_blog_field_image" }, { "relation": "contains", @@ -171808,9 +171839,9 @@ "source_file": "docs/api/blog.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_get_api_v1_blogs", - "target": "api_blog_query_parameters", - "confidence_score": 1.0 + "target": "api_blog_query_parameters" }, { "relation": "contains", @@ -171818,9 +171849,9 @@ "source_file": "docs/api/blog.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_get_api_v1_blogs", - "target": "api_blog_response_200", - "confidence_score": 1.0 + "target": "api_blog_response_200" }, { "relation": "contains", @@ -171828,9 +171859,9 @@ "source_file": "docs/api/blog.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_get_api_v1_blog_slug", - "target": "api_blog_errors", - "confidence_score": 1.0 + "target": "api_blog_errors" }, { "relation": "contains", @@ -171838,9 +171869,9 @@ "source_file": "docs/api/blog.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_get_api_v1_blog_slug", - "target": "api_blog_path_parameters", - "confidence_score": 1.0 + "target": "api_blog_path_parameters" }, { "relation": "contains", @@ -171848,9 +171879,9 @@ "source_file": "docs/api/blog.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_get_api_v1_blog_slug", - "target": "api_blog_response_200_58", - "confidence_score": 1.0 + "target": "api_blog_response_200_58" }, { "relation": "contains", @@ -171858,9 +171889,9 @@ "source_file": "docs/api/blog.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_api_v1_blog", - "target": "api_blog_errors_137", - "confidence_score": 1.0 + "target": "api_blog_errors_137" }, { "relation": "contains", @@ -171868,9 +171899,9 @@ "source_file": "docs/api/blog.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_api_v1_blog", - "target": "api_blog_request_body_application_json", - "confidence_score": 1.0 + "target": "api_blog_request_body_application_json" }, { "relation": "contains", @@ -171878,9 +171909,9 @@ "source_file": "docs/api/blog.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_api_v1_blog", - "target": "api_blog_response_201", - "confidence_score": 1.0 + "target": "api_blog_response_201" }, { "relation": "contains", @@ -171888,9 +171919,9 @@ "source_file": "docs/api/blog.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_patch_api_v1_blog_uuid", - "target": "api_blog_errors_174", - "confidence_score": 1.0 + "target": "api_blog_errors_174" }, { "relation": "contains", @@ -171898,9 +171929,9 @@ "source_file": "docs/api/blog.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_patch_api_v1_blog_uuid", - "target": "api_blog_path_parameters_152", - "confidence_score": 1.0 + "target": "api_blog_path_parameters_152" }, { "relation": "contains", @@ -171908,9 +171939,9 @@ "source_file": "docs/api/blog.md", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_patch_api_v1_blog_uuid", - "target": "api_blog_request_body_application_json_157", - "confidence_score": 1.0 + "target": "api_blog_request_body_application_json_157" }, { "relation": "contains", @@ -171918,9 +171949,9 @@ "source_file": "docs/api/blog.md", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_patch_api_v1_blog_uuid", - "target": "api_blog_response_200_171", - "confidence_score": 1.0 + "target": "api_blog_response_200_171" }, { "relation": "contains", @@ -171928,9 +171959,9 @@ "source_file": "docs/api/blog.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_delete_api_v1_blog_uuid", - "target": "api_blog_errors_194", - "confidence_score": 1.0 + "target": "api_blog_errors_194" }, { "relation": "contains", @@ -171938,9 +171969,9 @@ "source_file": "docs/api/blog.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_delete_api_v1_blog_uuid", - "target": "api_blog_response_200_189", - "confidence_score": 1.0 + "target": "api_blog_response_200_189" }, { "relation": "contains", @@ -171948,9 +171979,9 @@ "source_file": "docs/api/blog.md", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_file_upload_clinic_pro_blog_field_image", - "target": "api_blog_errors_231", - "confidence_score": 1.0 + "target": "api_blog_errors_231" }, { "relation": "contains", @@ -171958,9 +171989,9 @@ "source_file": "docs/api/blog.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_file_upload_clinic_pro_blog_field_image", - "target": "api_blog_request", - "confidence_score": 1.0 + "target": "api_blog_request" }, { "relation": "contains", @@ -171968,9 +171999,9 @@ "source_file": "docs/api/blog.md", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "api_blog_post_file_upload_clinic_pro_blog_field_image", - "target": "api_blog_response_200_217", - "confidence_score": 1.0 + "target": "api_blog_response_200_217" }, { "relation": "contains", @@ -171978,9 +172009,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation", - "target": "api_clinic_invitation_clinic_doctor_invitation_api", - "confidence_score": 1.0 + "target": "api_clinic_invitation_clinic_doctor_invitation_api" }, { "relation": "contains", @@ -171988,9 +172019,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", - "confidence_score": 1.0 + "target": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid" }, { "relation": "contains", @@ -171998,9 +172029,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", - "confidence_score": 1.0 + "target": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations" }, { "relation": "contains", @@ -172008,9 +172039,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_get_api_v1_clinic_invitation_token", - "confidence_score": 1.0 + "target": "api_clinic_invitation_get_api_v1_clinic_invitation_token" }, { "relation": "contains", @@ -172018,9 +172049,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L318", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_get_api_v1_doctor_invitations", - "confidence_score": 1.0 + "target": "api_clinic_invitation_get_api_v1_doctor_invitations" }, { "relation": "contains", @@ -172028,9 +172059,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", - "confidence_score": 1.0 + "target": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status" }, { "relation": "contains", @@ -172038,9 +172069,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", - "confidence_score": 1.0 + "target": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend" }, { "relation": "contains", @@ -172048,9 +172079,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", - "confidence_score": 1.0 + "target": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor" }, { "relation": "contains", @@ -172058,9 +172089,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept", - "confidence_score": 1.0 + "target": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept" }, { "relation": "contains", @@ -172068,9 +172099,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject", - "confidence_score": 1.0 + "target": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject" }, { "relation": "contains", @@ -172078,9 +172109,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L353", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_clinic_doctor_invitation_api", - "target": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", - "confidence_score": 1.0 + "target": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond" }, { "relation": "contains", @@ -172088,9 +172119,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", - "target": "api_clinic_invitation_errors", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors" }, { "relation": "contains", @@ -172098,9 +172129,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", - "target": "api_clinic_invitation_path_parameters", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters" }, { "relation": "contains", @@ -172108,9 +172139,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", - "target": "api_clinic_invitation_request_body_application_json", - "confidence_score": 1.0 + "target": "api_clinic_invitation_request_body_application_json" }, { "relation": "contains", @@ -172118,9 +172149,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", - "target": "api_clinic_invitation_response_201", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_201" }, { "relation": "contains", @@ -172128,9 +172159,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", - "target": "api_clinic_invitation_errors_118", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_118" }, { "relation": "contains", @@ -172138,9 +172169,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", - "target": "api_clinic_invitation_path_parameters_72", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_72" }, { "relation": "contains", @@ -172148,9 +172179,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", - "target": "api_clinic_invitation_query_parameters", - "confidence_score": 1.0 + "target": "api_clinic_invitation_query_parameters" }, { "relation": "contains", @@ -172158,9 +172189,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", - "target": "api_clinic_invitation_response_200", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200" }, { "relation": "contains", @@ -172168,9 +172199,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", - "target": "api_clinic_invitation_errors_146", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_146" }, { "relation": "contains", @@ -172178,9 +172209,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", - "target": "api_clinic_invitation_path_parameters_133", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_133" }, { "relation": "contains", @@ -172188,9 +172219,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", - "target": "api_clinic_invitation_response_200_138", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_138" }, { "relation": "contains", @@ -172198,9 +172229,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", - "target": "api_clinic_invitation_errors_185", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_185" }, { "relation": "contains", @@ -172208,9 +172239,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", - "target": "api_clinic_invitation_path_parameters_161", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_161" }, { "relation": "contains", @@ -172218,9 +172249,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", - "target": "api_clinic_invitation_request_body", - "confidence_score": 1.0 + "target": "api_clinic_invitation_request_body" }, { "relation": "contains", @@ -172228,9 +172259,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", - "target": "api_clinic_invitation_response_200_177", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_177" }, { "relation": "contains", @@ -172238,9 +172269,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", - "target": "api_clinic_invitation_errors_209", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_209" }, { "relation": "contains", @@ -172248,9 +172279,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", - "target": "api_clinic_invitation_path_parameters_201", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_201" }, { "relation": "contains", @@ -172258,9 +172289,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", - "target": "api_clinic_invitation_response_204", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_204" }, { "relation": "contains", @@ -172268,9 +172299,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L255", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_clinic_invitation_token", - "target": "api_clinic_invitation_errors_255", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_255" }, { "relation": "contains", @@ -172278,9 +172309,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L224", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_clinic_invitation_token", - "target": "api_clinic_invitation_path_parameters_224", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_224" }, { "relation": "contains", @@ -172288,9 +172319,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_clinic_invitation_token", - "target": "api_clinic_invitation_response_200_229", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_229" }, { "relation": "contains", @@ -172298,9 +172329,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept", - "target": "api_clinic_invitation_errors_283", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_283" }, { "relation": "contains", @@ -172308,9 +172339,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept", - "target": "api_clinic_invitation_path_parameters_270", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_270" }, { "relation": "contains", @@ -172318,9 +172349,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept", - "target": "api_clinic_invitation_response_200_275", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_275" }, { "relation": "contains", @@ -172328,9 +172359,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L310", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject", - "target": "api_clinic_invitation_errors_310", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_310" }, { "relation": "contains", @@ -172338,9 +172369,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L297", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject", - "target": "api_clinic_invitation_path_parameters_297", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_297" }, { "relation": "contains", @@ -172348,9 +172379,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L302", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject", - "target": "api_clinic_invitation_response_200_302", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_302" }, { "relation": "contains", @@ -172358,9 +172389,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L346", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_doctor_invitations", - "target": "api_clinic_invitation_errors_346", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_346" }, { "relation": "contains", @@ -172368,9 +172399,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L324", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_get_api_v1_doctor_invitations", - "target": "api_clinic_invitation_response_200_324", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_324" }, { "relation": "contains", @@ -172378,9 +172409,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L382", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", - "target": "api_clinic_invitation_errors_382", - "confidence_score": 1.0 + "target": "api_clinic_invitation_errors_382" }, { "relation": "contains", @@ -172388,9 +172419,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L361", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", - "target": "api_clinic_invitation_path_parameters_361", - "confidence_score": 1.0 + "target": "api_clinic_invitation_path_parameters_361" }, { "relation": "contains", @@ -172398,9 +172429,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L366", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", - "target": "api_clinic_invitation_request_body_366", - "confidence_score": 1.0 + "target": "api_clinic_invitation_request_body_366" }, { "relation": "contains", @@ -172408,9 +172439,9 @@ "source_file": "docs/api/clinic-invitation.md", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", - "target": "api_clinic_invitation_response_200_374", - "confidence_score": 1.0 + "target": "api_clinic_invitation_response_200_374" }, { "relation": "contains", @@ -172418,9 +172449,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services", - "target": "api_clinic_services_clinic_services_api", - "confidence_score": 1.0 + "target": "api_clinic_services_clinic_services_api" }, { "relation": "contains", @@ -172428,9 +172459,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_delete_api_v1_service_item_uuid", - "confidence_score": 1.0 + "target": "api_clinic_services_delete_api_v1_service_item_uuid" }, { "relation": "contains", @@ -172438,9 +172469,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_delete_api_v1_service_section_uuid", - "confidence_score": 1.0 + "target": "api_clinic_services_delete_api_v1_service_section_uuid" }, { "relation": "contains", @@ -172448,9 +172479,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_get_api_v1_service_items_sectionuuid", - "confidence_score": 1.0 + "target": "api_clinic_services_get_api_v1_service_items_sectionuuid" }, { "relation": "contains", @@ -172458,9 +172489,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_get_api_v1_service_sections", - "confidence_score": 1.0 + "target": "api_clinic_services_get_api_v1_service_sections" }, { "relation": "contains", @@ -172468,9 +172499,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_patch_api_v1_service_item_uuid", - "confidence_score": 1.0 + "target": "api_clinic_services_patch_api_v1_service_item_uuid" }, { "relation": "contains", @@ -172478,9 +172509,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_patch_api_v1_service_section_uuid", - "confidence_score": 1.0 + "target": "api_clinic_services_patch_api_v1_service_section_uuid" }, { "relation": "contains", @@ -172488,9 +172519,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L102", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_post_api_v1_service_item", - "confidence_score": 1.0 + "target": "api_clinic_services_post_api_v1_service_item" }, { "relation": "contains", @@ -172498,9 +172529,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_post_api_v1_service_section", - "confidence_score": 1.0 + "target": "api_clinic_services_post_api_v1_service_section" }, { "relation": "contains", @@ -172508,9 +172539,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_clinic_services_api", - "target": "api_clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "confidence_score": 1.0 + "target": "api_clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628" }, { "relation": "contains", @@ -172518,9 +172549,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_clinic_services_get_api_v1_service_items_uuid_tariffs", - "confidence_score": 1.0 + "target": "api_clinic_services_get_api_v1_service_items_uuid_tariffs" }, { "relation": "contains", @@ -172528,9 +172559,9 @@ "source_file": "docs/api/clinic-services.md", "source_location": "L198", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_clinic_services_put_api_v1_service_items_uuid_tariffs_year", - "confidence_score": 1.0 + "target": "api_clinic_services_put_api_v1_service_items_uuid_tariffs_year" }, { "relation": "contains", @@ -172538,9 +172569,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic", - "target": "api_clinic_clinic_api", - "confidence_score": 1.0 + "target": "api_clinic_clinic_api" }, { "relation": "contains", @@ -172548,9 +172579,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L411", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_clinic_address_management", - "confidence_score": 1.0 + "target": "api_clinic_clinic_address_management" }, { "relation": "contains", @@ -172558,9 +172589,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L314", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", - "confidence_score": 1.0 + "target": "api_clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid" }, { "relation": "contains", @@ -172568,9 +172599,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid", - "confidence_score": 1.0 + "target": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid" }, { "relation": "contains", @@ -172578,9 +172609,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_get_api_v1_clinic_uuid", - "confidence_score": 1.0 + "target": "api_clinic_get_api_v1_clinic_uuid" }, { "relation": "contains", @@ -172588,9 +172619,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_get_api_v1_clinics", - "confidence_score": 1.0 + "target": "api_clinic_get_api_v1_clinics" }, { "relation": "contains", @@ -172598,9 +172629,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_patch_api_v1_clinic_uuid", - "confidence_score": 1.0 + "target": "api_clinic_patch_api_v1_clinic_uuid" }, { "relation": "contains", @@ -172608,9 +172639,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_post_api_v1_clinic", - "confidence_score": 1.0 + "target": "api_clinic_post_api_v1_clinic" }, { "relation": "contains", @@ -172618,9 +172649,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L339", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", - "confidence_score": 1.0 + "target": "api_clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo" }, { "relation": "contains", @@ -172628,9 +172659,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L374", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_api", - "target": "api_clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", - "confidence_score": 1.0 + "target": "api_clinic_post_file_upload_clinic_pro_clinic_field_image_clinic" }, { "relation": "contains", @@ -172638,9 +172669,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic", - "target": "api_clinic_errors", - "confidence_score": 1.0 + "target": "api_clinic_errors" }, { "relation": "contains", @@ -172648,9 +172679,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic", - "target": "api_clinic_request_body_application_json", - "confidence_score": 1.0 + "target": "api_clinic_request_body_application_json" }, { "relation": "contains", @@ -172658,9 +172689,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic", - "target": "api_clinic_response_201", - "confidence_score": 1.0 + "target": "api_clinic_response_201" }, { "relation": "contains", @@ -172668,9 +172699,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_uuid", - "target": "api_clinic_errors_151", - "confidence_score": 1.0 + "target": "api_clinic_errors_151" }, { "relation": "contains", @@ -172678,9 +172709,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L103", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_uuid", - "target": "api_clinic_path_parameters", - "confidence_score": 1.0 + "target": "api_clinic_path_parameters" }, { "relation": "contains", @@ -172688,9 +172719,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_uuid", - "target": "api_clinic_response_200", - "confidence_score": 1.0 + "target": "api_clinic_response_200" }, { "relation": "contains", @@ -172698,9 +172729,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_patch_api_v1_clinic_uuid", - "target": "api_clinic_errors_175", - "confidence_score": 1.0 + "target": "api_clinic_errors_175" }, { "relation": "contains", @@ -172708,9 +172739,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_patch_api_v1_clinic_uuid", - "target": "api_clinic_path_parameters_164", - "confidence_score": 1.0 + "target": "api_clinic_path_parameters_164" }, { "relation": "contains", @@ -172718,9 +172749,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_patch_api_v1_clinic_uuid", - "target": "api_clinic_request_body", - "confidence_score": 1.0 + "target": "api_clinic_request_body" }, { "relation": "contains", @@ -172728,9 +172759,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_patch_api_v1_clinic_uuid", - "target": "api_clinic_response_200_172", - "confidence_score": 1.0 + "target": "api_clinic_response_200_172" }, { "relation": "contains", @@ -172738,9 +172769,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinics", - "target": "api_clinic_query_parameters", - "confidence_score": 1.0 + "target": "api_clinic_query_parameters" }, { "relation": "contains", @@ -172748,9 +172779,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L202", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinics", - "target": "api_clinic_response_200_202", - "confidence_score": 1.0 + "target": "api_clinic_response_200_202" }, { "relation": "contains", @@ -172758,9 +172789,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L307", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid", - "target": "api_clinic_errors_307", - "confidence_score": 1.0 + "target": "api_clinic_errors_307" }, { "relation": "contains", @@ -172768,9 +172799,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L252", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid", - "target": "api_clinic_path_parameters_252", - "confidence_score": 1.0 + "target": "api_clinic_path_parameters_252" }, { "relation": "contains", @@ -172778,9 +172809,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid", - "target": "api_clinic_query_parameters_257", - "confidence_score": 1.0 + "target": "api_clinic_query_parameters_257" }, { "relation": "contains", @@ -172788,9 +172819,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_doctor_list_clinicuuid", - "target": "api_clinic_response_200_273", - "confidence_score": 1.0 + "target": "api_clinic_response_200_273" }, { "relation": "contains", @@ -172798,9 +172829,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L331", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", - "target": "api_clinic_errors_331", - "confidence_score": 1.0 + "target": "api_clinic_errors_331" }, { "relation": "contains", @@ -172808,9 +172839,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L320", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", - "target": "api_clinic_path_parameters_320", - "confidence_score": 1.0 + "target": "api_clinic_path_parameters_320" }, { "relation": "contains", @@ -172818,9 +172849,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L326", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", - "target": "api_clinic_response_200_326", - "confidence_score": 1.0 + "target": "api_clinic_response_200_326" }, { "relation": "contains", @@ -172828,9 +172859,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L366", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", - "target": "api_clinic_errors_366", - "confidence_score": 1.0 + "target": "api_clinic_errors_366" }, { "relation": "contains", @@ -172838,9 +172869,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L345", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", - "target": "api_clinic_request", - "confidence_score": 1.0 + "target": "api_clinic_request" }, { "relation": "contains", @@ -172848,9 +172879,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L352", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", - "target": "api_clinic_response_200_352", - "confidence_score": 1.0 + "target": "api_clinic_response_200_352" }, { "relation": "contains", @@ -172858,9 +172889,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L403", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", - "target": "api_clinic_errors_403", - "confidence_score": 1.0 + "target": "api_clinic_errors_403" }, { "relation": "contains", @@ -172868,9 +172899,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L380", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", - "target": "api_clinic_request_380", - "confidence_score": 1.0 + "target": "api_clinic_request_380" }, { "relation": "contains", @@ -172878,9 +172909,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L387", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", - "target": "api_clinic_response_200_387", - "confidence_score": 1.0 + "target": "api_clinic_response_200_387" }, { "relation": "contains", @@ -172888,9 +172919,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L497", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_address_management", - "target": "api_clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid", - "confidence_score": 1.0 + "target": "api_clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid" }, { "relation": "contains", @@ -172898,9 +172929,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L413", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_address_management", - "target": "api_clinic_get_api_v1_clinic_clinicuuid_addresses", - "confidence_score": 1.0 + "target": "api_clinic_get_api_v1_clinic_clinicuuid_addresses" }, { "relation": "contains", @@ -172908,9 +172939,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_address_management", - "target": "api_clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid", - "confidence_score": 1.0 + "target": "api_clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid" }, { "relation": "contains", @@ -172918,9 +172949,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L442", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_address_management", - "target": "api_clinic_post_api_v1_clinic_clinicuuid_address", - "confidence_score": 1.0 + "target": "api_clinic_post_api_v1_clinic_clinicuuid_address" }, { "relation": "contains", @@ -172928,9 +172959,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L514", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_clinic_address_management", - "target": "api_clinic_removed_endpoint", - "confidence_score": 1.0 + "target": "api_clinic_removed_endpoint" }, { "relation": "contains", @@ -172938,9 +172969,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L419", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_get_api_v1_clinic_clinicuuid_addresses", - "target": "api_clinic_response_200_419", - "confidence_score": 1.0 + "target": "api_clinic_response_200_419" }, { "relation": "contains", @@ -172948,9 +172979,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L476", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic_clinicuuid_address", - "target": "api_clinic_errors_476", - "confidence_score": 1.0 + "target": "api_clinic_errors_476" }, { "relation": "contains", @@ -172958,9 +172989,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L448", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic_clinicuuid_address", - "target": "api_clinic_request_448", - "confidence_score": 1.0 + "target": "api_clinic_request_448" }, { "relation": "contains", @@ -172968,9 +172999,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L471", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_post_api_v1_clinic_clinicuuid_address", - "target": "api_clinic_response_201_471", - "confidence_score": 1.0 + "target": "api_clinic_response_201_471" }, { "relation": "contains", @@ -172978,9 +173009,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L490", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid", - "target": "api_clinic_response_200_490", - "confidence_score": 1.0 + "target": "api_clinic_response_200_490" }, { "relation": "contains", @@ -172988,9 +173019,9 @@ "source_file": "docs/api/clinic.md", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "api_clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid", - "target": "api_clinic_errors_505", - "confidence_score": 1.0 + "target": "api_clinic_errors_505" }, { "relation": "contains", @@ -172998,9 +173029,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard", - "target": "api_dashboard_dashboard_api", - "confidence_score": 1.0 + "target": "api_dashboard_dashboard_api" }, { "relation": "contains", @@ -173008,9 +173039,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L198", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_dashboard_api", - "target": "api_dashboard_get_api_v1_admin_dashboard_charts", - "confidence_score": 1.0 + "target": "api_dashboard_get_api_v1_admin_dashboard_charts" }, { "relation": "contains", @@ -173018,9 +173049,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_dashboard_api", - "target": "api_dashboard_get_api_v1_dashboard_clinic", - "confidence_score": 1.0 + "target": "api_dashboard_get_api_v1_dashboard_clinic" }, { "relation": "contains", @@ -173028,9 +173059,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_dashboard_api", - "target": "api_dashboard_get_api_v1_dashboard_doctor", - "confidence_score": 1.0 + "target": "api_dashboard_get_api_v1_dashboard_doctor" }, { "relation": "contains", @@ -173038,9 +173069,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_dashboard_api", - "target": "api_dashboard_get_api_v1_dashboard_secretary", - "confidence_score": 1.0 + "target": "api_dashboard_get_api_v1_dashboard_secretary" }, { "relation": "contains", @@ -173048,9 +173079,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_clinic", - "target": "api_dashboard_errors", - "confidence_score": 1.0 + "target": "api_dashboard_errors" }, { "relation": "contains", @@ -173058,9 +173089,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_clinic", - "target": "api_dashboard_query_params", - "confidence_score": 1.0 + "target": "api_dashboard_query_params" }, { "relation": "contains", @@ -173068,9 +173099,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_clinic", - "target": "api_dashboard_response_200", - "confidence_score": 1.0 + "target": "api_dashboard_response_200" }, { "relation": "contains", @@ -173078,9 +173109,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_doctor", - "target": "api_dashboard_errors_138", - "confidence_score": 1.0 + "target": "api_dashboard_errors_138" }, { "relation": "contains", @@ -173088,9 +173119,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_doctor", - "target": "api_dashboard_query_params_83", - "confidence_score": 1.0 + "target": "api_dashboard_query_params_83" }, { "relation": "contains", @@ -173098,9 +173129,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_doctor", - "target": "api_dashboard_response_200_90", - "confidence_score": 1.0 + "target": "api_dashboard_response_200_90" }, { "relation": "contains", @@ -173108,9 +173139,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_secretary", - "target": "api_dashboard_errors_190", - "confidence_score": 1.0 + "target": "api_dashboard_errors_190" }, { "relation": "contains", @@ -173118,9 +173149,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_dashboard_secretary", - "target": "api_dashboard_response_200_152", - "confidence_score": 1.0 + "target": "api_dashboard_response_200_152" }, { "relation": "contains", @@ -173128,9 +173159,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_admin_dashboard_charts", - "target": "api_dashboard_query_params_204", - "confidence_score": 1.0 + "target": "api_dashboard_query_params_204" }, { "relation": "contains", @@ -173138,9 +173169,9 @@ "source_file": "docs/api/dashboard.md", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "api_dashboard_get_api_v1_admin_dashboard_charts", - "target": "api_dashboard_response_200_211", - "confidence_score": 1.0 + "target": "api_dashboard_response_200_211" }, { "relation": "contains", @@ -173148,9 +173179,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service", - "target": "api_doctor_service_doctor_service_api", - "confidence_score": 1.0 + "target": "api_doctor_service_doctor_service_api" }, { "relation": "contains", @@ -173158,9 +173189,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L130", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_doctor_service_api", - "target": "api_doctor_service_delete_api_v1_admin_doctor_service_id", - "confidence_score": 1.0 + "target": "api_doctor_service_delete_api_v1_admin_doctor_service_id" }, { "relation": "contains", @@ -173168,9 +173199,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_doctor_service_api", - "target": "api_doctor_service_get_api_v1_admin_doctor_services", - "confidence_score": 1.0 + "target": "api_doctor_service_get_api_v1_admin_doctor_services" }, { "relation": "contains", @@ -173178,9 +173209,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_doctor_service_api", - "target": "api_doctor_service_get_api_v1_doctor_services", - "confidence_score": 1.0 + "target": "api_doctor_service_get_api_v1_doctor_services" }, { "relation": "contains", @@ -173188,9 +173219,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_doctor_service_api", - "target": "api_doctor_service_patch_api_v1_admin_doctor_service_id", - "confidence_score": 1.0 + "target": "api_doctor_service_patch_api_v1_admin_doctor_service_id" }, { "relation": "contains", @@ -173198,9 +173229,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_doctor_service_api", - "target": "api_doctor_service_post_api_v1_admin_doctor_service", - "confidence_score": 1.0 + "target": "api_doctor_service_post_api_v1_admin_doctor_service" }, { "relation": "contains", @@ -173208,9 +173239,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_get_api_v1_doctor_services", - "target": "api_doctor_service_query_parameters", - "confidence_score": 1.0 + "target": "api_doctor_service_query_parameters" }, { "relation": "contains", @@ -173218,9 +173249,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_get_api_v1_doctor_services", - "target": "api_doctor_service_response_200", - "confidence_score": 1.0 + "target": "api_doctor_service_response_200" }, { "relation": "contains", @@ -173228,9 +173259,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_get_api_v1_admin_doctor_services", - "target": "api_doctor_service_errors", - "confidence_score": 1.0 + "target": "api_doctor_service_errors" }, { "relation": "contains", @@ -173238,9 +173269,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_get_api_v1_admin_doctor_services", - "target": "api_doctor_service_query_parameters_43", - "confidence_score": 1.0 + "target": "api_doctor_service_query_parameters_43" }, { "relation": "contains", @@ -173248,9 +173279,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_get_api_v1_admin_doctor_services", - "target": "api_doctor_service_response_200_51", - "confidence_score": 1.0 + "target": "api_doctor_service_response_200_51" }, { "relation": "contains", @@ -173258,9 +173289,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_post_api_v1_admin_doctor_service", - "target": "api_doctor_service_errors_96", - "confidence_score": 1.0 + "target": "api_doctor_service_errors_96" }, { "relation": "contains", @@ -173268,9 +173299,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_post_api_v1_admin_doctor_service", - "target": "api_doctor_service_request_body_application_json", - "confidence_score": 1.0 + "target": "api_doctor_service_request_body_application_json" }, { "relation": "contains", @@ -173278,9 +173309,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_post_api_v1_admin_doctor_service", - "target": "api_doctor_service_response_201", - "confidence_score": 1.0 + "target": "api_doctor_service_response_201" }, { "relation": "contains", @@ -173288,9 +173319,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", - "target": "api_doctor_service_errors_121", - "confidence_score": 1.0 + "target": "api_doctor_service_errors_121" }, { "relation": "contains", @@ -173298,9 +173329,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", - "target": "api_doctor_service_path_parameters", - "confidence_score": 1.0 + "target": "api_doctor_service_path_parameters" }, { "relation": "contains", @@ -173308,9 +173339,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", - "target": "api_doctor_service_response_200_118", - "confidence_score": 1.0 + "target": "api_doctor_service_response_200_118" }, { "relation": "contains", @@ -173318,9 +173349,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_delete_api_v1_admin_doctor_service_id", - "target": "api_doctor_service_errors_141", - "confidence_score": 1.0 + "target": "api_doctor_service_errors_141" }, { "relation": "contains", @@ -173328,9 +173359,9 @@ "source_file": "docs/api/doctor-service.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_service_delete_api_v1_admin_doctor_service_id", - "target": "api_doctor_service_response_200_136", - "confidence_score": 1.0 + "target": "api_doctor_service_response_200_136" }, { "relation": "contains", @@ -173338,9 +173369,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor", - "target": "api_doctor_doctor_api", - "confidence_score": 1.0 + "target": "api_doctor_doctor_api" }, { "relation": "contains", @@ -173348,9 +173379,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L450", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", - "confidence_score": 1.0 + "target": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id" }, { "relation": "contains", @@ -173358,9 +173389,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_delete_api_v1_doctor_uuid", - "confidence_score": 1.0 + "target": "api_doctor_delete_api_v1_doctor_uuid" }, { "relation": "contains", @@ -173368,9 +173399,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "confidence_score": 1.0 + "target": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid" }, { "relation": "contains", @@ -173378,9 +173409,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L321", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", - "confidence_score": 1.0 + "target": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid" }, { "relation": "contains", @@ -173388,9 +173419,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_get_api_v1_doctor_uuid", - "confidence_score": 1.0 + "target": "api_doctor_get_api_v1_doctor_uuid" }, { "relation": "contains", @@ -173398,9 +173429,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_get_api_v1_doctors", - "confidence_score": 1.0 + "target": "api_doctor_get_api_v1_doctors" }, { "relation": "contains", @@ -173408,9 +173439,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L424", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "confidence_score": 1.0 + "target": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id" }, { "relation": "contains", @@ -173418,9 +173449,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_patch_api_v1_doctor_uuid", - "confidence_score": 1.0 + "target": "api_doctor_patch_api_v1_doctor_uuid" }, { "relation": "contains", @@ -173428,9 +173459,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L371", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_post_api_v1_clinic_pro_doctor_address", - "confidence_score": 1.0 + "target": "api_doctor_post_api_v1_clinic_pro_doctor_address" }, { "relation": "contains", @@ -173438,9 +173469,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L470", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", - "confidence_score": 1.0 + "target": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid" }, { "relation": "contains", @@ -173448,9 +173479,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_post_api_v1_doctor", - "confidence_score": 1.0 + "target": "api_doctor_post_api_v1_doctor" }, { "relation": "contains", @@ -173458,9 +173489,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L286", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_doctor_api", - "target": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", - "confidence_score": 1.0 + "target": "api_doctor_post_file_upload_clinic_pro_doctor_field_image" }, { "relation": "contains", @@ -173468,9 +173499,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_doctor", - "target": "api_doctor_errors", - "confidence_score": 1.0 + "target": "api_doctor_errors" }, { "relation": "contains", @@ -173478,9 +173509,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_doctor", - "target": "api_doctor_request_body_application_json", - "confidence_score": 1.0 + "target": "api_doctor_request_body_application_json" }, { "relation": "contains", @@ -173488,9 +173519,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_doctor", - "target": "api_doctor_response_201", - "confidence_score": 1.0 + "target": "api_doctor_response_201" }, { "relation": "contains", @@ -173498,9 +173529,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_doctor_uuid", - "target": "api_doctor_errors_114", - "confidence_score": 1.0 + "target": "api_doctor_errors_114" }, { "relation": "contains", @@ -173508,9 +173539,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_doctor_uuid", - "target": "api_doctor_path_parameters", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters" }, { "relation": "contains", @@ -173518,9 +173549,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_doctor_uuid", - "target": "api_doctor_response_200", - "confidence_score": 1.0 + "target": "api_doctor_response_200" }, { "relation": "contains", @@ -173528,9 +173559,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "target": "api_doctor_errors_151", - "confidence_score": 1.0 + "target": "api_doctor_errors_151" }, { "relation": "contains", @@ -173538,9 +173569,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "target": "api_doctor_path_parameters_127", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_127" }, { "relation": "contains", @@ -173548,9 +173579,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "target": "api_doctor_response_200_132", - "confidence_score": 1.0 + "target": "api_doctor_response_200_132" }, { "relation": "contains", @@ -173558,9 +173589,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", - "target": "api_doctor_schedule_fields_notes", - "confidence_score": 1.0 + "target": "api_doctor_schedule_fields_notes" }, { "relation": "contains", @@ -173568,9 +173599,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_doctors", - "target": "api_doctor_query_parameters", - "confidence_score": 1.0 + "target": "api_doctor_query_parameters" }, { "relation": "contains", @@ -173578,9 +173609,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_doctors", - "target": "api_doctor_response_200_187", - "confidence_score": 1.0 + "target": "api_doctor_response_200_187" }, { "relation": "contains", @@ -173588,9 +173619,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_doctor_uuid", - "target": "api_doctor_errors_249", - "confidence_score": 1.0 + "target": "api_doctor_errors_249" }, { "relation": "contains", @@ -173598,9 +173629,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L222", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_doctor_uuid", - "target": "api_doctor_path_parameters_222", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_222" }, { "relation": "contains", @@ -173608,9 +173639,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_doctor_uuid", - "target": "api_doctor_request_body_application_json_227", - "confidence_score": 1.0 + "target": "api_doctor_request_body_application_json_227" }, { "relation": "contains", @@ -173618,9 +173649,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_doctor_uuid", - "target": "api_doctor_response_200_246", - "confidence_score": 1.0 + "target": "api_doctor_response_200_246" }, { "relation": "contains", @@ -173628,9 +173659,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_delete_api_v1_doctor_uuid", - "target": "api_doctor_errors_277", - "confidence_score": 1.0 + "target": "api_doctor_errors_277" }, { "relation": "contains", @@ -173638,9 +173669,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_delete_api_v1_doctor_uuid", - "target": "api_doctor_path_parameters_264", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_264" }, { "relation": "contains", @@ -173648,9 +173679,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L269", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_delete_api_v1_doctor_uuid", - "target": "api_doctor_response_200_269", - "confidence_score": 1.0 + "target": "api_doctor_response_200_269" }, { "relation": "contains", @@ -173658,9 +173689,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", - "target": "api_doctor_errors_313", - "confidence_score": 1.0 + "target": "api_doctor_errors_313" }, { "relation": "contains", @@ -173668,9 +173699,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L292", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", - "target": "api_doctor_request", - "confidence_score": 1.0 + "target": "api_doctor_request" }, { "relation": "contains", @@ -173678,9 +173709,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L299", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", - "target": "api_doctor_response_200_299", - "confidence_score": 1.0 + "target": "api_doctor_response_200_299" }, { "relation": "contains", @@ -173688,9 +173719,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L327", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", - "target": "api_doctor_path_parameters_327", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_327" }, { "relation": "contains", @@ -173698,9 +173729,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L332", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", - "target": "api_doctor_response_200_332", - "confidence_score": 1.0 + "target": "api_doctor_response_200_332" }, { "relation": "contains", @@ -173708,9 +173739,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address", - "target": "api_doctor_errors_415", - "confidence_score": 1.0 + "target": "api_doctor_errors_415" }, { "relation": "contains", @@ -173718,9 +173749,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address", - "target": "api_doctor_request_body", - "confidence_score": 1.0 + "target": "api_doctor_request_body" }, { "relation": "contains", @@ -173728,9 +173759,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L400", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address", - "target": "api_doctor_response_201_400", - "confidence_score": 1.0 + "target": "api_doctor_response_201_400" }, { "relation": "contains", @@ -173738,9 +173769,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L441", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_errors_441", - "confidence_score": 1.0 + "target": "api_doctor_errors_441" }, { "relation": "contains", @@ -173748,9 +173779,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L430", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_path_parameters_430", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_430" }, { "relation": "contains", @@ -173758,9 +173789,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L435", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_request_body_435", - "confidence_score": 1.0 + "target": "api_doctor_request_body_435" }, { "relation": "contains", @@ -173768,9 +173799,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L438", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_response_200_438", - "confidence_score": 1.0 + "target": "api_doctor_response_200_438" }, { "relation": "contains", @@ -173778,9 +173809,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L461", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_errors_461", - "confidence_score": 1.0 + "target": "api_doctor_errors_461" }, { "relation": "contains", @@ -173788,9 +173819,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L456", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", - "target": "api_doctor_response_200_456", - "confidence_score": 1.0 + "target": "api_doctor_response_200_456" }, { "relation": "contains", @@ -173798,9 +173829,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", - "target": "api_doctor_errors_484", - "confidence_score": 1.0 + "target": "api_doctor_errors_484" }, { "relation": "contains", @@ -173808,9 +173839,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L476", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", - "target": "api_doctor_path_parameters_476", - "confidence_score": 1.0 + "target": "api_doctor_path_parameters_476" }, { "relation": "contains", @@ -173818,9 +173849,9 @@ "source_file": "docs/api/doctor.md", "source_location": "L481", "weight": 1.0, + "confidence_score": 1.0, "source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", - "target": "api_doctor_response_201_481", - "confidence_score": 1.0 + "target": "api_doctor_response_201_481" }, { "relation": "contains", @@ -173828,9 +173859,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance", - "target": "api_insurance_insurance_api", - "confidence_score": 1.0 + "target": "api_insurance_insurance_api" }, { "relation": "contains", @@ -173838,9 +173869,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_delete_api_v1_admin_insurance_id", - "confidence_score": 1.0 + "target": "api_insurance_delete_api_v1_admin_insurance_id" }, { "relation": "contains", @@ -173848,9 +173879,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_delete_api_v1_insurance_id", - "confidence_score": 1.0 + "target": "api_insurance_delete_api_v1_insurance_id" }, { "relation": "contains", @@ -173858,9 +173889,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "api_insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -173868,9 +173899,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_get_api_v1_admin_insurances", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_admin_insurances" }, { "relation": "contains", @@ -173878,9 +173909,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L224", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_get_api_v1_insurance_id", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_insurance_id" }, { "relation": "contains", @@ -173888,9 +173919,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L281", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_get_api_v1_insurance_pricing", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_insurance_pricing" }, { "relation": "contains", @@ -173898,9 +173929,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_get_api_v1_insurances", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_insurances" }, { "relation": "contains", @@ -173908,9 +173939,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_patch_api_v1_admin_insurance_id", - "confidence_score": 1.0 + "target": "api_insurance_patch_api_v1_admin_insurance_id" }, { "relation": "contains", @@ -173918,9 +173949,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L235", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_patch_api_v1_insurance_id", - "confidence_score": 1.0 + "target": "api_insurance_patch_api_v1_insurance_id" }, { "relation": "contains", @@ -173928,9 +173959,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_post_api_v1_admin_insurance", - "confidence_score": 1.0 + "target": "api_insurance_post_api_v1_admin_insurance" }, { "relation": "contains", @@ -173938,9 +173969,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", - "confidence_score": 1.0 + "target": "api_insurance_post_api_v1_admin_insurance_id_upload_logo" }, { "relation": "contains", @@ -173948,9 +173979,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_post_api_v1_insurance", - "confidence_score": 1.0 + "target": "api_insurance_post_api_v1_insurance" }, { "relation": "contains", @@ -173958,9 +173989,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L320", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_put_api_v1_insurance_pricing", - "confidence_score": 1.0 + "target": "api_insurance_put_api_v1_insurance_pricing" }, { "relation": "contains", @@ -173968,9 +173999,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "confidence_score": 1.0 + "target": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628" }, { "relation": "contains", @@ -173978,9 +174009,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L411", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_insurance_api", - "target": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", - "confidence_score": 1.0 + "target": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2" }, { "relation": "contains", @@ -173988,9 +174019,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_insurances", - "target": "api_insurance_query_parameters", - "confidence_score": 1.0 + "target": "api_insurance_query_parameters" }, { "relation": "contains", @@ -173998,9 +174029,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_insurances", - "target": "api_insurance_response_200", - "confidence_score": 1.0 + "target": "api_insurance_response_200" }, { "relation": "contains", @@ -174008,9 +174039,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_admin_insurances", - "target": "api_insurance_errors", - "confidence_score": 1.0 + "target": "api_insurance_errors" }, { "relation": "contains", @@ -174018,9 +174049,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_admin_insurances", - "target": "api_insurance_query_parameters_53", - "confidence_score": 1.0 + "target": "api_insurance_query_parameters_53" }, { "relation": "contains", @@ -174028,9 +174059,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_admin_insurances", - "target": "api_insurance_response_200_61", - "confidence_score": 1.0 + "target": "api_insurance_response_200_61" }, { "relation": "contains", @@ -174038,9 +174069,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_admin_insurance", - "target": "api_insurance_errors_104", - "confidence_score": 1.0 + "target": "api_insurance_errors_104" }, { "relation": "contains", @@ -174048,9 +174079,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_admin_insurance", - "target": "api_insurance_request_body_application_json", - "confidence_score": 1.0 + "target": "api_insurance_request_body_application_json" }, { "relation": "contains", @@ -174058,9 +174089,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_admin_insurance", - "target": "api_insurance_response_201", - "confidence_score": 1.0 + "target": "api_insurance_response_201" }, { "relation": "contains", @@ -174068,9 +174099,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_admin_insurance_id", - "target": "api_insurance_errors_129", - "confidence_score": 1.0 + "target": "api_insurance_errors_129" }, { "relation": "contains", @@ -174078,9 +174109,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_admin_insurance_id", - "target": "api_insurance_path_parameters", - "confidence_score": 1.0 + "target": "api_insurance_path_parameters" }, { "relation": "contains", @@ -174088,9 +174119,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_admin_insurance_id", - "target": "api_insurance_response_200_126", - "confidence_score": 1.0 + "target": "api_insurance_response_200_126" }, { "relation": "contains", @@ -174098,9 +174129,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_delete_api_v1_admin_insurance_id", - "target": "api_insurance_response_200_144", - "confidence_score": 1.0 + "target": "api_insurance_response_200_144" }, { "relation": "contains", @@ -174108,9 +174139,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", - "target": "api_insurance_request", - "confidence_score": 1.0 + "target": "api_insurance_request" }, { "relation": "contains", @@ -174118,9 +174149,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", - "target": "api_insurance_response_200_164", - "confidence_score": 1.0 + "target": "api_insurance_response_200_164" }, { "relation": "contains", @@ -174128,9 +174159,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L214", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_insurance", - "target": "api_insurance_errors_214", - "confidence_score": 1.0 + "target": "api_insurance_errors_214" }, { "relation": "contains", @@ -174138,9 +174169,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_insurance", - "target": "api_insurance_request_body_application_json_186", - "confidence_score": 1.0 + "target": "api_insurance_request_body_application_json_186" }, { "relation": "contains", @@ -174148,9 +174179,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_post_api_v1_insurance", - "target": "api_insurance_response_201_201", - "confidence_score": 1.0 + "target": "api_insurance_response_201_201" }, { "relation": "contains", @@ -174158,9 +174189,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_insurance_id", - "target": "api_insurance_response_200_230", - "confidence_score": 1.0 + "target": "api_insurance_response_200_230" }, { "relation": "contains", @@ -174168,9 +174199,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_insurance_id", - "target": "api_insurance_errors_249", - "confidence_score": 1.0 + "target": "api_insurance_errors_249" }, { "relation": "contains", @@ -174178,9 +174209,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L241", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_insurance_id", - "target": "api_insurance_request_body", - "confidence_score": 1.0 + "target": "api_insurance_request_body" }, { "relation": "contains", @@ -174188,9 +174219,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_patch_api_v1_insurance_id", - "target": "api_insurance_response_200_246", - "confidence_score": 1.0 + "target": "api_insurance_response_200_246" }, { "relation": "contains", @@ -174198,9 +174229,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_delete_api_v1_insurance_id", - "target": "api_insurance_response_200_264", - "confidence_score": 1.0 + "target": "api_insurance_response_200_264" }, { "relation": "contains", @@ -174208,9 +174239,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L287", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_insurance_pricing", - "target": "api_insurance_response_200_287", - "confidence_score": 1.0 + "target": "api_insurance_response_200_287" }, { "relation": "contains", @@ -174218,9 +174249,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L315", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_get_api_v1_insurance_pricing", - "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627", - "confidence_score": 1.0 + "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627" }, { "relation": "contains", @@ -174228,9 +174259,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L326", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_put_api_v1_insurance_pricing", - "target": "api_insurance_request_body_326", - "confidence_score": 1.0 + "target": "api_insurance_request_body_326" }, { "relation": "contains", @@ -174238,9 +174269,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L343", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_put_api_v1_insurance_pricing", - "target": "api_insurance_response_200_343", - "confidence_score": 1.0 + "target": "api_insurance_response_200_343" }, { "relation": "contains", @@ -174248,9 +174279,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L346", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_put_api_v1_insurance_pricing", - "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627_346", - "confidence_score": 1.0 + "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627_346" }, { "relation": "contains", @@ -174258,9 +174289,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L400", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid", - "confidence_score": 1.0 + "target": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid" }, { "relation": "contains", @@ -174268,9 +174299,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L355", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_insurance_get_api_v1_billing_tenant_insurances", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_billing_tenant_insurances" }, { "relation": "contains", @@ -174278,9 +174309,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L397", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid", - "confidence_score": 1.0 + "target": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid" }, { "relation": "contains", @@ -174288,9 +174319,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "target": "api_insurance_post_api_v1_billing_tenant_insurances", - "confidence_score": 1.0 + "target": "api_insurance_post_api_v1_billing_tenant_insurances" }, { "relation": "contains", @@ -174298,9 +174329,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L415", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", - "target": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", - "confidence_score": 1.0 + "target": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage" }, { "relation": "contains", @@ -174308,9 +174339,9 @@ "source_file": "docs/api/insurance.md", "source_location": "L440", "weight": 1.0, + "confidence_score": 1.0, "source": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", - "target": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", - "confidence_score": 1.0 + "target": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage" }, { "relation": "contains", @@ -174318,9 +174349,9 @@ "source_file": "docs/api/location.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location", - "target": "api_location_location_api_province_city", - "confidence_score": 1.0 + "target": "api_location_location_api_province_city" }, { "relation": "contains", @@ -174328,9 +174359,9 @@ "source_file": "docs/api/location.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_delete_api_v1_admin_city_id", - "confidence_score": 1.0 + "target": "api_location_delete_api_v1_admin_city_id" }, { "relation": "contains", @@ -174338,9 +174369,9 @@ "source_file": "docs/api/location.md", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_delete_api_v1_admin_province_id", - "confidence_score": 1.0 + "target": "api_location_delete_api_v1_admin_province_id" }, { "relation": "contains", @@ -174348,9 +174379,9 @@ "source_file": "docs/api/location.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_get_api_v1_admin_cities", - "confidence_score": 1.0 + "target": "api_location_get_api_v1_admin_cities" }, { "relation": "contains", @@ -174358,9 +174389,9 @@ "source_file": "docs/api/location.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_get_api_v1_admin_provinces", - "confidence_score": 1.0 + "target": "api_location_get_api_v1_admin_provinces" }, { "relation": "contains", @@ -174368,9 +174399,9 @@ "source_file": "docs/api/location.md", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_get_api_v1_categorys_bundle_legacy", - "confidence_score": 1.0 + "target": "api_location_get_api_v1_categorys_bundle_legacy" }, { "relation": "contains", @@ -174378,9 +174409,9 @@ "source_file": "docs/api/location.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_get_api_v1_cities", - "confidence_score": 1.0 + "target": "api_location_get_api_v1_cities" }, { "relation": "contains", @@ -174388,9 +174419,9 @@ "source_file": "docs/api/location.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_get_api_v1_provinces", - "confidence_score": 1.0 + "target": "api_location_get_api_v1_provinces" }, { "relation": "contains", @@ -174398,9 +174429,9 @@ "source_file": "docs/api/location.md", "source_location": "L205", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_patch_api_v1_admin_city_id", - "confidence_score": 1.0 + "target": "api_location_patch_api_v1_admin_city_id" }, { "relation": "contains", @@ -174408,9 +174439,9 @@ "source_file": "docs/api/location.md", "source_location": "L132", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_patch_api_v1_admin_province_id", - "confidence_score": 1.0 + "target": "api_location_patch_api_v1_admin_province_id" }, { "relation": "contains", @@ -174418,9 +174449,9 @@ "source_file": "docs/api/location.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_post_api_v1_admin_city", - "confidence_score": 1.0 + "target": "api_location_post_api_v1_admin_city" }, { "relation": "contains", @@ -174428,9 +174459,9 @@ "source_file": "docs/api/location.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_location_api_province_city", - "target": "api_location_post_api_v1_admin_province", - "confidence_score": 1.0 + "target": "api_location_post_api_v1_admin_province" }, { "relation": "contains", @@ -174438,9 +174469,9 @@ "source_file": "docs/api/location.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_provinces", - "target": "api_location_response_200", - "confidence_score": 1.0 + "target": "api_location_response_200" }, { "relation": "contains", @@ -174448,9 +174479,9 @@ "source_file": "docs/api/location.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_cities", - "target": "api_location_query_parameters", - "confidence_score": 1.0 + "target": "api_location_query_parameters" }, { "relation": "contains", @@ -174458,9 +174489,9 @@ "source_file": "docs/api/location.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_cities", - "target": "api_location_response_200_37", - "confidence_score": 1.0 + "target": "api_location_response_200_37" }, { "relation": "contains", @@ -174468,9 +174499,9 @@ "source_file": "docs/api/location.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_admin_provinces", - "target": "api_location_errors", - "confidence_score": 1.0 + "target": "api_location_errors" }, { "relation": "contains", @@ -174478,9 +174509,9 @@ "source_file": "docs/api/location.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_admin_provinces", - "target": "api_location_query_parameters_56", - "confidence_score": 1.0 + "target": "api_location_query_parameters_56" }, { "relation": "contains", @@ -174488,9 +174519,9 @@ "source_file": "docs/api/location.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_admin_provinces", - "target": "api_location_response_200_63", - "confidence_score": 1.0 + "target": "api_location_response_200_63" }, { "relation": "contains", @@ -174498,9 +174529,9 @@ "source_file": "docs/api/location.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_admin_cities", - "target": "api_location_query_parameters_86", - "confidence_score": 1.0 + "target": "api_location_query_parameters_86" }, { "relation": "contains", @@ -174508,9 +174539,9 @@ "source_file": "docs/api/location.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_admin_cities", - "target": "api_location_response_200_94", - "confidence_score": 1.0 + "target": "api_location_response_200_94" }, { "relation": "contains", @@ -174518,9 +174549,9 @@ "source_file": "docs/api/location.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_province", - "target": "api_location_errors_123", - "confidence_score": 1.0 + "target": "api_location_errors_123" }, { "relation": "contains", @@ -174528,9 +174559,9 @@ "source_file": "docs/api/location.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_province", - "target": "api_location_request_body_application_json", - "confidence_score": 1.0 + "target": "api_location_request_body_application_json" }, { "relation": "contains", @@ -174538,9 +174569,9 @@ "source_file": "docs/api/location.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_province", - "target": "api_location_response_201", - "confidence_score": 1.0 + "target": "api_location_response_201" }, { "relation": "contains", @@ -174548,9 +174579,9 @@ "source_file": "docs/api/location.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_patch_api_v1_admin_province_id", - "target": "api_location_errors_148", - "confidence_score": 1.0 + "target": "api_location_errors_148" }, { "relation": "contains", @@ -174558,9 +174589,9 @@ "source_file": "docs/api/location.md", "source_location": "L138", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_patch_api_v1_admin_province_id", - "target": "api_location_path_parameters", - "confidence_score": 1.0 + "target": "api_location_path_parameters" }, { "relation": "contains", @@ -174568,9 +174599,9 @@ "source_file": "docs/api/location.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_patch_api_v1_admin_province_id", - "target": "api_location_response_200_145", - "confidence_score": 1.0 + "target": "api_location_response_200_145" }, { "relation": "contains", @@ -174578,9 +174609,9 @@ "source_file": "docs/api/location.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_delete_api_v1_admin_province_id", - "target": "api_location_response_200_163", - "confidence_score": 1.0 + "target": "api_location_response_200_163" }, { "relation": "contains", @@ -174588,9 +174619,9 @@ "source_file": "docs/api/location.md", "source_location": "L196", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_city", - "target": "api_location_errors_196", - "confidence_score": 1.0 + "target": "api_location_errors_196" }, { "relation": "contains", @@ -174598,9 +174629,9 @@ "source_file": "docs/api/location.md", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_city", - "target": "api_location_request_body_application_json_176", - "confidence_score": 1.0 + "target": "api_location_request_body_application_json_176" }, { "relation": "contains", @@ -174608,9 +174639,9 @@ "source_file": "docs/api/location.md", "source_location": "L193", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_post_api_v1_admin_city", - "target": "api_location_response_201_193", - "confidence_score": 1.0 + "target": "api_location_response_201_193" }, { "relation": "contains", @@ -174618,9 +174649,9 @@ "source_file": "docs/api/location.md", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_patch_api_v1_admin_city_id", - "target": "api_location_response_200_213", - "confidence_score": 1.0 + "target": "api_location_response_200_213" }, { "relation": "contains", @@ -174628,9 +174659,9 @@ "source_file": "docs/api/location.md", "source_location": "L224", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_delete_api_v1_admin_city_id", - "target": "api_location_response_200_224", - "confidence_score": 1.0 + "target": "api_location_response_200_224" }, { "relation": "contains", @@ -174638,9 +174669,9 @@ "source_file": "docs/api/location.md", "source_location": "L237", "weight": 1.0, + "confidence_score": 1.0, "source": "api_location_get_api_v1_categorys_bundle_legacy", - "target": "api_location_path_parameters_237", - "confidence_score": 1.0 + "target": "api_location_path_parameters_237" }, { "relation": "contains", @@ -174648,9 +174679,9 @@ "source_file": "docs/api/patient.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient", - "target": "api_patient_patient_records_sessions_api", - "confidence_score": 1.0 + "target": "api_patient_patient_records_sessions_api" }, { "relation": "contains", @@ -174658,9 +174689,9 @@ "source_file": "docs/api/patient.md", "source_location": "L311", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_patient_records_sessions_api", - "target": "api_patient_auto_creation_on_appointment_confirm", - "confidence_score": 1.0 + "target": "api_patient_auto_creation_on_appointment_confirm" }, { "relation": "contains", @@ -174668,9 +174699,9 @@ "source_file": "docs/api/patient.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_patient_records_sessions_api", - "target": "api_patient_endpoints", - "confidence_score": 1.0 + "target": "api_patient_endpoints" }, { "relation": "contains", @@ -174678,9 +174709,9 @@ "source_file": "docs/api/patient.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_patient_records_sessions_api", - "target": "api_patient_overview", - "confidence_score": 1.0 + "target": "api_patient_overview" }, { "relation": "contains", @@ -174688,9 +174719,9 @@ "source_file": "docs/api/patient.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_create_patient_record", - "confidence_score": 1.0 + "target": "api_patient_create_patient_record" }, { "relation": "contains", @@ -174698,9 +174729,9 @@ "source_file": "docs/api/patient.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_create_session", - "confidence_score": 1.0 + "target": "api_patient_create_session" }, { "relation": "contains", @@ -174708,9 +174739,9 @@ "source_file": "docs/api/patient.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_get_patient_record", - "confidence_score": 1.0 + "target": "api_patient_get_patient_record" }, { "relation": "contains", @@ -174718,9 +174749,9 @@ "source_file": "docs/api/patient.md", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_list_patient_sessions", - "confidence_score": 1.0 + "target": "api_patient_list_patient_sessions" }, { "relation": "contains", @@ -174728,9 +174759,9 @@ "source_file": "docs/api/patient.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_list_patients", - "confidence_score": 1.0 + "target": "api_patient_list_patients" }, { "relation": "contains", @@ -174738,9 +174769,9 @@ "source_file": "docs/api/patient.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "api_patient_endpoints", - "target": "api_patient_update_session", - "confidence_score": 1.0 + "target": "api_patient_update_session" }, { "relation": "contains", @@ -174748,9 +174779,9 @@ "source_file": "docs/api/payment.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment", - "target": "api_payment_payment_api", - "confidence_score": 1.0 + "target": "api_payment_payment_api" }, { "relation": "contains", @@ -174758,9 +174789,9 @@ "source_file": "docs/api/payment.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_get_api_v1_my_payments", - "confidence_score": 1.0 + "target": "api_payment_get_api_v1_my_payments" }, { "relation": "contains", @@ -174768,9 +174799,9 @@ "source_file": "docs/api/payment.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_get_api_v1_payment_callback_gateway", - "confidence_score": 1.0 + "target": "api_payment_get_api_v1_payment_callback_gateway" }, { "relation": "contains", @@ -174778,9 +174809,9 @@ "source_file": "docs/api/payment.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_get_api_v1_payment_config", - "confidence_score": 1.0 + "target": "api_payment_get_api_v1_payment_config" }, { "relation": "contains", @@ -174788,9 +174819,9 @@ "source_file": "docs/api/payment.md", "source_location": "L218", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_get_api_v1_payment_uuid", - "confidence_score": 1.0 + "target": "api_payment_get_api_v1_payment_uuid" }, { "relation": "contains", @@ -174798,9 +174829,9 @@ "source_file": "docs/api/payment.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_post_api_v1_payment_appointment", - "confidence_score": 1.0 + "target": "api_payment_post_api_v1_payment_appointment" }, { "relation": "contains", @@ -174808,9 +174839,9 @@ "source_file": "docs/api/payment.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_post_api_v1_payment_callback_gateway", - "confidence_score": 1.0 + "target": "api_payment_post_api_v1_payment_callback_gateway" }, { "relation": "contains", @@ -174818,9 +174849,9 @@ "source_file": "docs/api/payment.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_post_api_v1_subscription_payment", - "confidence_score": 1.0 + "target": "api_payment_post_api_v1_subscription_payment" }, { "relation": "contains", @@ -174828,9 +174859,9 @@ "source_file": "docs/api/payment.md", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_post_get_api_v1_subscription_payment_callback_gateway", - "confidence_score": 1.0 + "target": "api_payment_post_get_api_v1_subscription_payment_callback_gateway" }, { "relation": "contains", @@ -174838,9 +174869,9 @@ "source_file": "docs/api/payment.md", "source_location": "L267", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_payment_api", - "target": "api_payment_sandbox_test_mode_origin_allowlist", - "confidence_score": 1.0 + "target": "api_payment_sandbox_test_mode_origin_allowlist" }, { "relation": "contains", @@ -174848,9 +174879,9 @@ "source_file": "docs/api/payment.md", "source_location": "L14", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_config", - "target": "api_payment_response_200", - "confidence_score": 1.0 + "target": "api_payment_response_200" }, { "relation": "contains", @@ -174858,9 +174889,9 @@ "source_file": "docs/api/payment.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_my_payments", - "target": "api_payment_errors", - "confidence_score": 1.0 + "target": "api_payment_errors" }, { "relation": "contains", @@ -174868,9 +174899,9 @@ "source_file": "docs/api/payment.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_my_payments", - "target": "api_payment_query_parameters", - "confidence_score": 1.0 + "target": "api_payment_query_parameters" }, { "relation": "contains", @@ -174878,9 +174909,9 @@ "source_file": "docs/api/payment.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_my_payments", - "target": "api_payment_response_200_paginated", - "confidence_score": 1.0 + "target": "api_payment_response_200_paginated" }, { "relation": "contains", @@ -174888,9 +174919,9 @@ "source_file": "docs/api/payment.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_payment_appointment", - "target": "api_payment_errors_116", - "confidence_score": 1.0 + "target": "api_payment_errors_116" }, { "relation": "contains", @@ -174898,9 +174929,9 @@ "source_file": "docs/api/payment.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_payment_appointment", - "target": "api_payment_request_body_application_json", - "confidence_score": 1.0 + "target": "api_payment_request_body_application_json" }, { "relation": "contains", @@ -174908,9 +174939,9 @@ "source_file": "docs/api/payment.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_payment_appointment", - "target": "api_payment_response_200_98", - "confidence_score": 1.0 + "target": "api_payment_response_200_98" }, { "relation": "contains", @@ -174918,9 +174949,9 @@ "source_file": "docs/api/payment.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_callback_gateway", - "target": "api_payment_notes", - "confidence_score": 1.0 + "target": "api_payment_notes" }, { "relation": "contains", @@ -174928,9 +174959,9 @@ "source_file": "docs/api/payment.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_callback_gateway", - "target": "api_payment_path_parameters", - "confidence_score": 1.0 + "target": "api_payment_path_parameters" }, { "relation": "contains", @@ -174938,9 +174969,9 @@ "source_file": "docs/api/payment.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_callback_gateway", - "target": "api_payment_request_varies_by_gateway", - "confidence_score": 1.0 + "target": "api_payment_request_varies_by_gateway" }, { "relation": "contains", @@ -174948,9 +174979,9 @@ "source_file": "docs/api/payment.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_callback_gateway", - "target": "api_payment_response", - "confidence_score": 1.0 + "target": "api_payment_response" }, { "relation": "contains", @@ -174958,9 +174989,9 @@ "source_file": "docs/api/payment.md", "source_location": "L201", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_subscription_payment", - "target": "api_payment_errors_201", - "confidence_score": 1.0 + "target": "api_payment_errors_201" }, { "relation": "contains", @@ -174968,9 +174999,9 @@ "source_file": "docs/api/payment.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_subscription_payment", - "target": "api_payment_request_body", - "confidence_score": 1.0 + "target": "api_payment_request_body" }, { "relation": "contains", @@ -174978,9 +175009,9 @@ "source_file": "docs/api/payment.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_post_api_v1_subscription_payment", - "target": "api_payment_response_200_189", - "confidence_score": 1.0 + "target": "api_payment_response_200_189" }, { "relation": "contains", @@ -174988,9 +175019,9 @@ "source_file": "docs/api/payment.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_errors_258", - "confidence_score": 1.0 + "target": "api_payment_errors_258" }, { "relation": "contains", @@ -174998,9 +175029,9 @@ "source_file": "docs/api/payment.md", "source_location": "L224", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_path_parameters_224", - "confidence_score": 1.0 + "target": "api_payment_path_parameters_224" }, { "relation": "contains", @@ -175008,9 +175039,9 @@ "source_file": "docs/api/payment.md", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_response_200_229", - "confidence_score": 1.0 + "target": "api_payment_response_200_229" }, { "relation": "contains", @@ -175018,9 +175049,9 @@ "source_file": "docs/api/rating.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating", - "target": "api_rating_rating_comments_api", - "confidence_score": 1.0 + "target": "api_rating_rating_comments_api" }, { "relation": "contains", @@ -175028,9 +175059,9 @@ "source_file": "docs/api/rating.md", "source_location": "L238", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_delete_api_v1_comment_uuid", - "confidence_score": 1.0 + "target": "api_rating_delete_api_v1_comment_uuid" }, { "relation": "contains", @@ -175038,9 +175069,9 @@ "source_file": "docs/api/rating.md", "source_location": "L258", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_get_api_v1_admin_comments_pending", - "confidence_score": 1.0 + "target": "api_rating_get_api_v1_admin_comments_pending" }, { "relation": "contains", @@ -175048,9 +175079,9 @@ "source_file": "docs/api/rating.md", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_get_api_v1_comments_doctoruuid", - "confidence_score": 1.0 + "target": "api_rating_get_api_v1_comments_doctoruuid" }, { "relation": "contains", @@ -175058,9 +175089,9 @@ "source_file": "docs/api/rating.md", "source_location": "L69", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_get_api_v1_rate_doctoruuid", - "confidence_score": 1.0 + "target": "api_rating_get_api_v1_rate_doctoruuid" }, { "relation": "contains", @@ -175068,9 +175099,9 @@ "source_file": "docs/api/rating.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_get_api_v1_rate_doctoruuid_eligibility", - "confidence_score": 1.0 + "target": "api_rating_get_api_v1_rate_doctoruuid_eligibility" }, { "relation": "contains", @@ -175078,9 +175109,9 @@ "source_file": "docs/api/rating.md", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_post_api_v1_admin_comment_uuid_approve", - "confidence_score": 1.0 + "target": "api_rating_post_api_v1_admin_comment_uuid_approve" }, { "relation": "contains", @@ -175088,9 +175119,9 @@ "source_file": "docs/api/rating.md", "source_location": "L307", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_post_api_v1_admin_comment_uuid_reject", - "confidence_score": 1.0 + "target": "api_rating_post_api_v1_admin_comment_uuid_reject" }, { "relation": "contains", @@ -175098,9 +175129,9 @@ "source_file": "docs/api/rating.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_post_api_v1_comment", - "confidence_score": 1.0 + "target": "api_rating_post_api_v1_comment" }, { "relation": "contains", @@ -175108,9 +175139,9 @@ "source_file": "docs/api/rating.md", "source_location": "L325", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_post_api_v1_like_commentuuid", - "confidence_score": 1.0 + "target": "api_rating_post_api_v1_like_commentuuid" }, { "relation": "contains", @@ -175118,9 +175149,9 @@ "source_file": "docs/api/rating.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_rating_comments_api", - "target": "api_rating_post_api_v1_rate", - "confidence_score": 1.0 + "target": "api_rating_post_api_v1_rate" }, { "relation": "contains", @@ -175128,9 +175159,9 @@ "source_file": "docs/api/rating.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_rate", - "target": "api_rating_errors", - "confidence_score": 1.0 + "target": "api_rating_errors" }, { "relation": "contains", @@ -175138,9 +175169,9 @@ "source_file": "docs/api/rating.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_rate", - "target": "api_rating_request_body_application_json", - "confidence_score": 1.0 + "target": "api_rating_request_body_application_json" }, { "relation": "contains", @@ -175148,9 +175179,9 @@ "source_file": "docs/api/rating.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_rate", - "target": "api_rating_response_201_200", - "confidence_score": 1.0 + "target": "api_rating_response_201_200" }, { "relation": "contains", @@ -175158,9 +175189,9 @@ "source_file": "docs/api/rating.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid", - "target": "api_rating_errors_105", - "confidence_score": 1.0 + "target": "api_rating_errors_105" }, { "relation": "contains", @@ -175168,9 +175199,9 @@ "source_file": "docs/api/rating.md", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid", - "target": "api_rating_path_parameters", - "confidence_score": 1.0 + "target": "api_rating_path_parameters" }, { "relation": "contains", @@ -175178,9 +175209,9 @@ "source_file": "docs/api/rating.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid", - "target": "api_rating_response_200", - "confidence_score": 1.0 + "target": "api_rating_response_200" }, { "relation": "contains", @@ -175188,9 +175219,9 @@ "source_file": "docs/api/rating.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid_eligibility", - "target": "api_rating_errors_133", - "confidence_score": 1.0 + "target": "api_rating_errors_133" }, { "relation": "contains", @@ -175198,9 +175229,9 @@ "source_file": "docs/api/rating.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid_eligibility", - "target": "api_rating_path_parameters_118", - "confidence_score": 1.0 + "target": "api_rating_path_parameters_118" }, { "relation": "contains", @@ -175208,9 +175239,9 @@ "source_file": "docs/api/rating.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_rate_doctoruuid_eligibility", - "target": "api_rating_response_200_123", - "confidence_score": 1.0 + "target": "api_rating_response_200_123" }, { "relation": "contains", @@ -175218,9 +175249,9 @@ "source_file": "docs/api/rating.md", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_comment", - "target": "api_rating_errors_171", - "confidence_score": 1.0 + "target": "api_rating_errors_171" }, { "relation": "contains", @@ -175228,9 +175259,9 @@ "source_file": "docs/api/rating.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_comment", - "target": "api_rating_request_body_application_json_151", - "confidence_score": 1.0 + "target": "api_rating_request_body_application_json_151" }, { "relation": "contains", @@ -175238,9 +175269,9 @@ "source_file": "docs/api/rating.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_comment", - "target": "api_rating_response_201", - "confidence_score": 1.0 + "target": "api_rating_response_201" }, { "relation": "contains", @@ -175248,9 +175279,9 @@ "source_file": "docs/api/rating.md", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_comments_doctoruuid", - "target": "api_rating_errors_231", - "confidence_score": 1.0 + "target": "api_rating_errors_231" }, { "relation": "contains", @@ -175258,9 +175289,9 @@ "source_file": "docs/api/rating.md", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_comments_doctoruuid", - "target": "api_rating_path_parameters_187", - "confidence_score": 1.0 + "target": "api_rating_path_parameters_187" }, { "relation": "contains", @@ -175268,9 +175299,9 @@ "source_file": "docs/api/rating.md", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_comments_doctoruuid", - "target": "api_rating_response_200_192", - "confidence_score": 1.0 + "target": "api_rating_response_200_192" }, { "relation": "contains", @@ -175278,9 +175309,9 @@ "source_file": "docs/api/rating.md", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_delete_api_v1_comment_uuid", - "target": "api_rating_errors_249", - "confidence_score": 1.0 + "target": "api_rating_errors_249" }, { "relation": "contains", @@ -175288,9 +175319,9 @@ "source_file": "docs/api/rating.md", "source_location": "L244", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_delete_api_v1_comment_uuid", - "target": "api_rating_response_200_244", - "confidence_score": 1.0 + "target": "api_rating_response_200_244" }, { "relation": "contains", @@ -175298,9 +175329,9 @@ "source_file": "docs/api/rating.md", "source_location": "L281", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_admin_comments_pending", - "target": "api_rating_errors_281", - "confidence_score": 1.0 + "target": "api_rating_errors_281" }, { "relation": "contains", @@ -175308,9 +175339,9 @@ "source_file": "docs/api/rating.md", "source_location": "L264", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_get_api_v1_admin_comments_pending", - "target": "api_rating_response_200_264", - "confidence_score": 1.0 + "target": "api_rating_response_200_264" }, { "relation": "contains", @@ -175318,9 +175349,9 @@ "source_file": "docs/api/rating.md", "source_location": "L298", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_admin_comment_uuid_approve", - "target": "api_rating_errors_298", - "confidence_score": 1.0 + "target": "api_rating_errors_298" }, { "relation": "contains", @@ -175328,9 +175359,9 @@ "source_file": "docs/api/rating.md", "source_location": "L295", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_admin_comment_uuid_approve", - "target": "api_rating_response_200_295", - "confidence_score": 1.0 + "target": "api_rating_response_200_295" }, { "relation": "contains", @@ -175338,9 +175369,9 @@ "source_file": "docs/api/rating.md", "source_location": "L316", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_admin_comment_uuid_reject", - "target": "api_rating_errors_316", - "confidence_score": 1.0 + "target": "api_rating_errors_316" }, { "relation": "contains", @@ -175348,9 +175379,9 @@ "source_file": "docs/api/rating.md", "source_location": "L313", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_admin_comment_uuid_reject", - "target": "api_rating_response_200_313", - "confidence_score": 1.0 + "target": "api_rating_response_200_313" }, { "relation": "contains", @@ -175358,9 +175389,9 @@ "source_file": "docs/api/rating.md", "source_location": "L359", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_like_commentuuid", - "target": "api_rating_errors_359", - "confidence_score": 1.0 + "target": "api_rating_errors_359" }, { "relation": "contains", @@ -175368,9 +175399,9 @@ "source_file": "docs/api/rating.md", "source_location": "L334", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_like_commentuuid", - "target": "api_rating_path_parameters_334", - "confidence_score": 1.0 + "target": "api_rating_path_parameters_334" }, { "relation": "contains", @@ -175378,9 +175409,9 @@ "source_file": "docs/api/rating.md", "source_location": "L339", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_like_commentuuid", - "target": "api_rating_request_body_application_json_339", - "confidence_score": 1.0 + "target": "api_rating_request_body_application_json_339" }, { "relation": "contains", @@ -175388,9 +175419,9 @@ "source_file": "docs/api/rating.md", "source_location": "L347", "weight": 1.0, + "confidence_score": 1.0, "source": "api_rating_post_api_v1_like_commentuuid", - "target": "api_rating_response_200_347", - "confidence_score": 1.0 + "target": "api_rating_response_200_347" }, { "relation": "contains", @@ -175398,9 +175429,9 @@ "source_file": "docs/api/representation.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation", - "target": "api_representation_representation_agent_api", - "confidence_score": 1.0 + "target": "api_representation_representation_agent_api" }, { "relation": "contains", @@ -175408,9 +175439,9 @@ "source_file": "docs/api/representation.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_delete_api_v1_representation_uuid", - "confidence_score": 1.0 + "target": "api_representation_delete_api_v1_representation_uuid" }, { "relation": "contains", @@ -175418,9 +175449,9 @@ "source_file": "docs/api/representation.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_get_api_v1_representation_uuid", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_uuid" }, { "relation": "contains", @@ -175428,9 +175459,9 @@ "source_file": "docs/api/representation.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_uuid_dashboard_monthly" }, { "relation": "contains", @@ -175438,9 +175469,9 @@ "source_file": "docs/api/representation.md", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_uuid_dashboard_yearly" }, { "relation": "contains", @@ -175448,9 +175479,9 @@ "source_file": "docs/api/representation.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_patch_api_v1_representation_uuid", - "confidence_score": 1.0 + "target": "api_representation_patch_api_v1_representation_uuid" }, { "relation": "contains", @@ -175458,9 +175489,9 @@ "source_file": "docs/api/representation.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_post_api_v1_representation", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation" }, { "relation": "contains", @@ -175468,9 +175499,9 @@ "source_file": "docs/api/representation.md", "source_location": "L542", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc" }, { "relation": "contains", @@ -175478,9 +175509,9 @@ "source_file": "docs/api/representation.md", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_representation_agent_api", - "target": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "confidence_score": 1.0 + "target": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation" }, { "relation": "contains", @@ -175488,9 +175519,9 @@ "source_file": "docs/api/representation.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation", - "target": "api_representation_errors", - "confidence_score": 1.0 + "target": "api_representation_errors" }, { "relation": "contains", @@ -175498,9 +175529,9 @@ "source_file": "docs/api/representation.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation", - "target": "api_representation_request_body_application_json", - "confidence_score": 1.0 + "target": "api_representation_request_body_application_json" }, { "relation": "contains", @@ -175508,9 +175539,9 @@ "source_file": "docs/api/representation.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation", - "target": "api_representation_response_201", - "confidence_score": 1.0 + "target": "api_representation_response_201" }, { "relation": "contains", @@ -175518,9 +175549,9 @@ "source_file": "docs/api/representation.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid", - "target": "api_representation_errors_96", - "confidence_score": 1.0 + "target": "api_representation_errors_96" }, { "relation": "contains", @@ -175528,9 +175559,9 @@ "source_file": "docs/api/representation.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid", - "target": "api_representation_path_parameters", - "confidence_score": 1.0 + "target": "api_representation_path_parameters" }, { "relation": "contains", @@ -175538,9 +175569,9 @@ "source_file": "docs/api/representation.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid", - "target": "api_representation_response_200", - "confidence_score": 1.0 + "target": "api_representation_response_200" }, { "relation": "contains", @@ -175548,9 +175579,9 @@ "source_file": "docs/api/representation.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_patch_api_v1_representation_uuid", - "target": "api_representation_errors_127", - "confidence_score": 1.0 + "target": "api_representation_errors_127" }, { "relation": "contains", @@ -175558,9 +175589,9 @@ "source_file": "docs/api/representation.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_patch_api_v1_representation_uuid", - "target": "api_representation_request_body_application_json_111", - "confidence_score": 1.0 + "target": "api_representation_request_body_application_json_111" }, { "relation": "contains", @@ -175568,9 +175599,9 @@ "source_file": "docs/api/representation.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_patch_api_v1_representation_uuid", - "target": "api_representation_response_200_124", - "confidence_score": 1.0 + "target": "api_representation_response_200_124" }, { "relation": "contains", @@ -175578,9 +175609,9 @@ "source_file": "docs/api/representation.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_delete_api_v1_representation_uuid", - "target": "api_representation_errors_147", - "confidence_score": 1.0 + "target": "api_representation_errors_147" }, { "relation": "contains", @@ -175588,9 +175619,9 @@ "source_file": "docs/api/representation.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_delete_api_v1_representation_uuid", - "target": "api_representation_response_200_142", - "confidence_score": 1.0 + "target": "api_representation_response_200_142" }, { "relation": "contains", @@ -175598,9 +175629,9 @@ "source_file": "docs/api/representation.md", "source_location": "L191", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "target": "api_representation_errors_191", - "confidence_score": 1.0 + "target": "api_representation_errors_191" }, { "relation": "contains", @@ -175608,9 +175639,9 @@ "source_file": "docs/api/representation.md", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "target": "api_representation_path_parameters_162", - "confidence_score": 1.0 + "target": "api_representation_path_parameters_162" }, { "relation": "contains", @@ -175618,9 +175649,9 @@ "source_file": "docs/api/representation.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "target": "api_representation_query_parameters", - "confidence_score": 1.0 + "target": "api_representation_query_parameters" }, { "relation": "contains", @@ -175628,9 +175659,9 @@ "source_file": "docs/api/representation.md", "source_location": "L173", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_monthly", - "target": "api_representation_response_200_173", - "confidence_score": 1.0 + "target": "api_representation_response_200_173" }, { "relation": "contains", @@ -175638,9 +175669,9 @@ "source_file": "docs/api/representation.md", "source_location": "L206", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", - "target": "api_representation_query_parameters_206", - "confidence_score": 1.0 + "target": "api_representation_query_parameters_206" }, { "relation": "contains", @@ -175648,9 +175679,9 @@ "source_file": "docs/api/representation.md", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_uuid_dashboard_yearly", - "target": "api_representation_response_200_211", - "confidence_score": 1.0 + "target": "api_representation_response_200_211" }, { "relation": "contains", @@ -175658,9 +175689,9 @@ "source_file": "docs/api/representation.md", "source_location": "L325", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_delete_api_v1_representation_iban_id", - "confidence_score": 1.0 + "target": "api_representation_delete_api_v1_representation_iban_id" }, { "relation": "contains", @@ -175668,9 +175699,9 @@ "source_file": "docs/api/representation.md", "source_location": "L388", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_get_api_v1_representation_appointments", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_appointments" }, { "relation": "contains", @@ -175678,9 +175709,9 @@ "source_file": "docs/api/representation.md", "source_location": "L508", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_get_api_v1_representation_clinics", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_clinics" }, { "relation": "contains", @@ -175688,9 +175719,9 @@ "source_file": "docs/api/representation.md", "source_location": "L431", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_get_api_v1_representation_doctors", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_doctors" }, { "relation": "contains", @@ -175698,9 +175729,9 @@ "source_file": "docs/api/representation.md", "source_location": "L466", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_get_api_v1_representation_doctors_stats", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_doctors_stats" }, { "relation": "contains", @@ -175708,9 +175739,9 @@ "source_file": "docs/api/representation.md", "source_location": "L238", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_get_api_v1_representation_me", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_me" }, { "relation": "contains", @@ -175718,9 +175749,9 @@ "source_file": "docs/api/representation.md", "source_location": "L362", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_post_api_v1_representation_clinic", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation_clinic" }, { "relation": "contains", @@ -175728,9 +175759,9 @@ "source_file": "docs/api/representation.md", "source_location": "L334", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_post_api_v1_representation_doctor", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation_doctor" }, { "relation": "contains", @@ -175738,9 +175769,9 @@ "source_file": "docs/api/representation.md", "source_location": "L486", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_post_api_v1_representation_doctors_uuid_status", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation_doctors_uuid_status" }, { "relation": "contains", @@ -175748,9 +175779,9 @@ "source_file": "docs/api/representation.md", "source_location": "L298", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_post_api_v1_representation_iban", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation_iban" }, { "relation": "contains", @@ -175758,9 +175789,9 @@ "source_file": "docs/api/representation.md", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", - "target": "api_representation_post_api_v1_representation_verify_national_code", - "confidence_score": 1.0 + "target": "api_representation_post_api_v1_representation_verify_national_code" }, { "relation": "contains", @@ -175768,9 +175799,9 @@ "source_file": "docs/api/representation.md", "source_location": "L266", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_me", - "target": "api_representation_errors_266", - "confidence_score": 1.0 + "target": "api_representation_errors_266" }, { "relation": "contains", @@ -175778,9 +175809,9 @@ "source_file": "docs/api/representation.md", "source_location": "L242", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_get_api_v1_representation_me", - "target": "api_representation_response_200_242", - "confidence_score": 1.0 + "target": "api_representation_response_200_242" }, { "relation": "contains", @@ -175788,9 +175819,9 @@ "source_file": "docs/api/representation.md", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation_verify_national_code", - "target": "api_representation_errors_288", - "confidence_score": 1.0 + "target": "api_representation_errors_288" }, { "relation": "contains", @@ -175798,9 +175829,9 @@ "source_file": "docs/api/representation.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation_verify_national_code", - "target": "api_representation_request_body", - "confidence_score": 1.0 + "target": "api_representation_request_body" }, { "relation": "contains", @@ -175808,18 +175839,18 @@ "source_file": "docs/api/representation.md", "source_location": "L285", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation_verify_national_code", - "target": "api_representation_response_200_285", - "confidence_score": 1.0 + "target": "api_representation_response_200_285" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L313", + "source_location": "L314", "weight": 1.0, "source": "api_representation_post_api_v1_representation_iban", - "target": "api_representation_errors_313", + "target": "api_representation_errors_314", "confidence_score": 1.0 }, { @@ -175828,228 +175859,228 @@ "source_file": "docs/api/representation.md", "source_location": "L302", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_post_api_v1_representation_iban", - "target": "api_representation_request_body_302", - "confidence_score": 1.0 + "target": "api_representation_request_body_302" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L310", + "source_location": "L311", "weight": 1.0, "source": "api_representation_post_api_v1_representation_iban", - "target": "api_representation_response_200_310", + "target": "api_representation_response_200_311", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L329", + "source_location": "L330", "weight": 1.0, "source": "api_representation_delete_api_v1_representation_iban_id", - "target": "api_representation_response_200_329", + "target": "api_representation_response_200_330", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L353", + "source_location": "L354", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctor", - "target": "api_representation_errors_353", + "target": "api_representation_errors_354", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L338", + "source_location": "L339", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctor", - "target": "api_representation_request_body_338", + "target": "api_representation_request_body_339", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L349", + "source_location": "L350", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctor", - "target": "api_representation_response_201_349", + "target": "api_representation_response_201_350", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L380", + "source_location": "L381", "weight": 1.0, "source": "api_representation_post_api_v1_representation_clinic", - "target": "api_representation_errors_380", + "target": "api_representation_errors_381", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L366", + "source_location": "L367", "weight": 1.0, "source": "api_representation_post_api_v1_representation_clinic", - "target": "api_representation_request_body_366", + "target": "api_representation_request_body_367", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L376", + "source_location": "L377", "weight": 1.0, "source": "api_representation_post_api_v1_representation_clinic", - "target": "api_representation_response_200_376", + "target": "api_representation_response_200_377", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L424", + "source_location": "L425", "weight": 1.0, "source": "api_representation_get_api_v1_representation_appointments", - "target": "api_representation_errors_424", + "target": "api_representation_errors_425", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L392", + "source_location": "L393", "weight": 1.0, "source": "api_representation_get_api_v1_representation_appointments", - "target": "api_representation_query_parameters_392", + "target": "api_representation_query_parameters_393", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L401", + "source_location": "L402", "weight": 1.0, "source": "api_representation_get_api_v1_representation_appointments", - "target": "api_representation_response_200_401", + "target": "api_representation_response_200_402", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L459", + "source_location": "L460", "weight": 1.0, "source": "api_representation_get_api_v1_representation_doctors", - "target": "api_representation_errors_459", + "target": "api_representation_errors_460", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L437", + "source_location": "L438", "weight": 1.0, "source": "api_representation_get_api_v1_representation_doctors", - "target": "api_representation_query_parameters_437", + "target": "api_representation_query_parameters_438", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L444", + "source_location": "L445", "weight": 1.0, "source": "api_representation_get_api_v1_representation_doctors", - "target": "api_representation_response_200_444", + "target": "api_representation_response_200_445", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L479", + "source_location": "L480", "weight": 1.0, "source": "api_representation_get_api_v1_representation_doctors_stats", - "target": "api_representation_errors_479", + "target": "api_representation_errors_480", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L472", + "source_location": "L473", "weight": 1.0, "source": "api_representation_get_api_v1_representation_doctors_stats", - "target": "api_representation_response_200_472", + "target": "api_representation_response_200_473", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L501", + "source_location": "L502", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctors_uuid_status", - "target": "api_representation_errors_501", + "target": "api_representation_errors_502", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L492", + "source_location": "L493", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctors_uuid_status", - "target": "api_representation_path_parameters_492", + "target": "api_representation_path_parameters_493", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L497", + "source_location": "L498", "weight": 1.0, "source": "api_representation_post_api_v1_representation_doctors_uuid_status", - "target": "api_representation_response_200_497", + "target": "api_representation_response_200_498", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L535", + "source_location": "L536", "weight": 1.0, "source": "api_representation_get_api_v1_representation_clinics", - "target": "api_representation_errors_535", + "target": "api_representation_errors_536", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L514", + "source_location": "L515", "weight": 1.0, "source": "api_representation_get_api_v1_representation_clinics", - "target": "api_representation_query_parameters_514", + "target": "api_representation_query_parameters_515", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L521", + "source_location": "L522", "weight": 1.0, "source": "api_representation_get_api_v1_representation_clinics", - "target": "api_representation_response_200_521", + "target": "api_representation_response_200_522", "confidence_score": 1.0 }, { @@ -176058,9 +176089,9 @@ "source_file": "docs/api/representation.md", "source_location": "L546", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", - "target": "api_representation_get_api_v1_representation_dashboard_summary", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_dashboard_summary" }, { "relation": "contains", @@ -176068,9 +176099,9 @@ "source_file": "docs/api/representation.md", "source_location": "L570", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", - "target": "api_representation_get_api_v1_representation_doctors_performance", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_doctors_performance" }, { "relation": "contains", @@ -176078,18 +176109,18 @@ "source_file": "docs/api/representation.md", "source_location": "L591", "weight": 1.0, + "confidence_score": 1.0, "source": "api_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", - "target": "api_representation_get_api_v1_representation_finance_report", - "confidence_score": 1.0 + "target": "api_representation_get_api_v1_representation_finance_report" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/representation.md", - "source_location": "L565", + "source_location": "L566", "weight": 1.0, "source": "api_representation_get_api_v1_representation_dashboard_summary", - "target": "api_representation_errors_565", + "target": "api_representation_errors_566", "confidence_score": 1.0 }, { @@ -176098,9 +176129,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary", - "target": "api_secretary_secretary_api", - "confidence_score": 1.0 + "target": "api_secretary_secretary_api" }, { "relation": "contains", @@ -176108,9 +176139,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L221", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_delete_api_v1_secretary_uuid", - "confidence_score": 1.0 + "target": "api_secretary_delete_api_v1_secretary_uuid" }, { "relation": "contains", @@ -176118,9 +176149,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L285", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "confidence_score": 1.0 + "target": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid" }, { "relation": "contains", @@ -176128,9 +176159,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_get_api_v1_secretaries_doctoruuid", - "confidence_score": 1.0 + "target": "api_secretary_get_api_v1_secretaries_doctoruuid" }, { "relation": "contains", @@ -176138,9 +176169,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_get_api_v1_secretary_uuid", - "confidence_score": 1.0 + "target": "api_secretary_get_api_v1_secretary_uuid" }, { "relation": "contains", @@ -176148,9 +176179,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_patch_api_v1_secretary_uuid", - "confidence_score": 1.0 + "target": "api_secretary_patch_api_v1_secretary_uuid" }, { "relation": "contains", @@ -176158,9 +176189,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_post_api_v1_secretary", - "confidence_score": 1.0 + "target": "api_secretary_post_api_v1_secretary" }, { "relation": "contains", @@ -176168,9 +176199,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L333", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "confidence_score": 1.0 + "target": "api_secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc" }, { "relation": "contains", @@ -176178,9 +176209,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_secretary_api", - "target": "api_secretary_\u0645\u062f\u0644_scope", - "confidence_score": 1.0 + "target": "api_secretary_\u0645\u062f\u0644_scope" }, { "relation": "contains", @@ -176188,9 +176219,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_post_api_v1_secretary", - "target": "api_secretary_errors", - "confidence_score": 1.0 + "target": "api_secretary_errors" }, { "relation": "contains", @@ -176198,9 +176229,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_post_api_v1_secretary", - "target": "api_secretary_request_body_application_json", - "confidence_score": 1.0 + "target": "api_secretary_request_body_application_json" }, { "relation": "contains", @@ -176208,9 +176239,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_post_api_v1_secretary", - "target": "api_secretary_response_201", - "confidence_score": 1.0 + "target": "api_secretary_response_201" }, { "relation": "contains", @@ -176218,9 +176249,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretary_uuid", - "target": "api_secretary_errors_167", - "confidence_score": 1.0 + "target": "api_secretary_errors_167" }, { "relation": "contains", @@ -176228,9 +176259,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretary_uuid", - "target": "api_secretary_path_parameters", - "confidence_score": 1.0 + "target": "api_secretary_path_parameters" }, { "relation": "contains", @@ -176238,9 +176269,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretary_uuid", - "target": "api_secretary_response_200", - "confidence_score": 1.0 + "target": "api_secretary_response_200" }, { "relation": "contains", @@ -176248,9 +176279,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L211", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_errors_211", - "confidence_score": 1.0 + "target": "api_secretary_errors_211" }, { "relation": "contains", @@ -176258,9 +176289,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_request_body_application_json_183", - "confidence_score": 1.0 + "target": "api_secretary_request_body_application_json_183" }, { "relation": "contains", @@ -176268,9 +176299,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L207", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_response_200_207", - "confidence_score": 1.0 + "target": "api_secretary_response_200_207" }, { "relation": "contains", @@ -176278,9 +176309,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L233", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_delete_api_v1_secretary_uuid", - "target": "api_secretary_errors_233", - "confidence_score": 1.0 + "target": "api_secretary_errors_233" }, { "relation": "contains", @@ -176288,9 +176319,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_delete_api_v1_secretary_uuid", - "target": "api_secretary_response_200_227", - "confidence_score": 1.0 + "target": "api_secretary_response_200_227" }, { "relation": "contains", @@ -176298,9 +176329,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_errors_275", - "confidence_score": 1.0 + "target": "api_secretary_errors_275" }, { "relation": "contains", @@ -176308,9 +176339,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L249", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_path_parameters_249", - "confidence_score": 1.0 + "target": "api_secretary_path_parameters_249" }, { "relation": "contains", @@ -176318,9 +176349,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L255", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_response_200_255", - "confidence_score": 1.0 + "target": "api_secretary_response_200_255" }, { "relation": "contains", @@ -176328,9 +176359,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L323", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_errors_323", - "confidence_score": 1.0 + "target": "api_secretary_errors_323" }, { "relation": "contains", @@ -176338,9 +176369,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L317", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_notes", - "confidence_score": 1.0 + "target": "api_secretary_notes" }, { "relation": "contains", @@ -176348,9 +176379,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_path_parameters_291", - "confidence_score": 1.0 + "target": "api_secretary_path_parameters_291" }, { "relation": "contains", @@ -176358,9 +176389,9 @@ "source_file": "docs/api/secretary.md", "source_location": "L297", "weight": 1.0, + "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_response_200_297", - "confidence_score": 1.0 + "target": "api_secretary_response_200_297" }, { "relation": "contains", @@ -176368,9 +176399,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement", - "target": "api_settlement_settlement_wallet_api", - "confidence_score": 1.0 + "target": "api_settlement_settlement_wallet_api" }, { "relation": "contains", @@ -176378,9 +176409,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_financialbreakdown_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc", - "confidence_score": 1.0 + "target": "api_settlement_financialbreakdown_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc" }, { "relation": "contains", @@ -176388,9 +176419,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_get_api_v1_settlement", - "confidence_score": 1.0 + "target": "api_settlement_get_api_v1_settlement" }, { "relation": "contains", @@ -176398,9 +176429,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_get_api_v1_settlement_uuid", - "confidence_score": 1.0 + "target": "api_settlement_get_api_v1_settlement_uuid" }, { "relation": "contains", @@ -176408,9 +176439,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_get_api_v1_wallet_balance", - "confidence_score": 1.0 + "target": "api_settlement_get_api_v1_wallet_balance" }, { "relation": "contains", @@ -176418,9 +176449,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_get_api_v1_wallet_transactions", - "confidence_score": 1.0 + "target": "api_settlement_get_api_v1_wallet_transactions" }, { "relation": "contains", @@ -176428,9 +176459,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_post_api_v1_settlement", - "confidence_score": 1.0 + "target": "api_settlement_post_api_v1_settlement" }, { "relation": "contains", @@ -176438,9 +176469,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L188", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_post_api_v1_settlement_uuid_approve", - "confidence_score": 1.0 + "target": "api_settlement_post_api_v1_settlement_uuid_approve" }, { "relation": "contains", @@ -176448,9 +176479,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_post_api_v1_settlement_uuid_reject", - "confidence_score": 1.0 + "target": "api_settlement_post_api_v1_settlement_uuid_reject" }, { "relation": "contains", @@ -176458,9 +176489,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L259", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_settlement_wallet_api", - "target": "api_settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", - "confidence_score": 1.0 + "target": "api_settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin" }, { "relation": "contains", @@ -176468,9 +176499,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_wallet_balance", - "target": "api_settlement_errors", - "confidence_score": 1.0 + "target": "api_settlement_errors" }, { "relation": "contains", @@ -176478,9 +176509,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_wallet_balance", - "target": "api_settlement_response_200", - "confidence_score": 1.0 + "target": "api_settlement_response_200" }, { "relation": "contains", @@ -176488,9 +176519,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_wallet_transactions", - "target": "api_settlement_errors_77", - "confidence_score": 1.0 + "target": "api_settlement_errors_77" }, { "relation": "contains", @@ -176498,9 +176529,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_wallet_transactions", - "target": "api_settlement_response_200_46", - "confidence_score": 1.0 + "target": "api_settlement_response_200_46" }, { "relation": "contains", @@ -176508,9 +176539,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement", - "target": "api_settlement_errors_123", - "confidence_score": 1.0 + "target": "api_settlement_errors_123" }, { "relation": "contains", @@ -176518,9 +176549,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement", - "target": "api_settlement_request_body_application_json", - "confidence_score": 1.0 + "target": "api_settlement_request_body_application_json" }, { "relation": "contains", @@ -176528,9 +176559,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement", - "target": "api_settlement_response_201", - "confidence_score": 1.0 + "target": "api_settlement_response_201" }, { "relation": "contains", @@ -176538,9 +176569,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_settlement", - "target": "api_settlement_errors_163", - "confidence_score": 1.0 + "target": "api_settlement_errors_163" }, { "relation": "contains", @@ -176548,9 +176579,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_settlement", - "target": "api_settlement_response_200_139", - "confidence_score": 1.0 + "target": "api_settlement_response_200_139" }, { "relation": "contains", @@ -176558,9 +176589,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_settlement_uuid", - "target": "api_settlement_errors_179", - "confidence_score": 1.0 + "target": "api_settlement_errors_179" }, { "relation": "contains", @@ -176568,9 +176599,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_get_api_v1_settlement_uuid", - "target": "api_settlement_response_200_176", - "confidence_score": 1.0 + "target": "api_settlement_response_200_176" }, { "relation": "contains", @@ -176578,9 +176609,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L213", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_approve", - "target": "api_settlement_errors_213", - "confidence_score": 1.0 + "target": "api_settlement_errors_213" }, { "relation": "contains", @@ -176588,9 +176619,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_approve", - "target": "api_settlement_path_parameters", - "confidence_score": 1.0 + "target": "api_settlement_path_parameters" }, { "relation": "contains", @@ -176598,9 +176629,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L199", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_approve", - "target": "api_settlement_request_body_application_json_199", - "confidence_score": 1.0 + "target": "api_settlement_request_body_application_json_199" }, { "relation": "contains", @@ -176608,9 +176639,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_approve", - "target": "api_settlement_response_200_210", - "confidence_score": 1.0 + "target": "api_settlement_response_200_210" }, { "relation": "contains", @@ -176618,9 +176649,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L243", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_reject", - "target": "api_settlement_errors_243", - "confidence_score": 1.0 + "target": "api_settlement_errors_243" }, { "relation": "contains", @@ -176628,9 +176659,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_reject", - "target": "api_settlement_request_body", - "confidence_score": 1.0 + "target": "api_settlement_request_body" }, { "relation": "contains", @@ -176638,9 +176669,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L240", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_post_api_v1_settlement_uuid_reject", - "target": "api_settlement_response_200_240", - "confidence_score": 1.0 + "target": "api_settlement_response_200_240" }, { "relation": "contains", @@ -176648,9 +176679,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", - "target": "api_settlement_post_api_v1_settlement_uuid_paid", - "confidence_score": 1.0 + "target": "api_settlement_post_api_v1_settlement_uuid_paid" }, { "relation": "contains", @@ -176658,9 +176689,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", - "target": "api_settlement_post_api_v1_settlement_uuid_receipt", - "confidence_score": 1.0 + "target": "api_settlement_post_api_v1_settlement_uuid_receipt" }, { "relation": "contains", @@ -176668,9 +176699,9 @@ "source_file": "docs/api/settlement.md", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "api_settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", - "target": "api_settlement_post_file_upload_clinic_pro_settlement_receipt", - "confidence_score": 1.0 + "target": "api_settlement_post_file_upload_clinic_pro_settlement_receipt" }, { "relation": "contains", @@ -176678,9 +176709,9 @@ "source_file": "docs/api/sms.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms", - "target": "api_sms_sms_api", - "confidence_score": 1.0 + "target": "api_sms_sms_api" }, { "relation": "contains", @@ -176688,9 +176719,9 @@ "source_file": "docs/api/sms.md", "source_location": "L420", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_admin_endpoints", - "confidence_score": 1.0 + "target": "api_sms_admin_endpoints" }, { "relation": "contains", @@ -176698,9 +176729,9 @@ "source_file": "docs/api/sms.md", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_delete_api_v1_sms_template_uuid", - "confidence_score": 1.0 + "target": "api_sms_delete_api_v1_sms_template_uuid" }, { "relation": "contains", @@ -176708,9 +176739,9 @@ "source_file": "docs/api/sms.md", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_get_api_v1_admin_sms_templates", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_admin_sms_templates" }, { "relation": "contains", @@ -176718,9 +176749,9 @@ "source_file": "docs/api/sms.md", "source_location": "L144", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_get_api_v1_sms_template_uuid", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_sms_template_uuid" }, { "relation": "contains", @@ -176728,9 +176759,9 @@ "source_file": "docs/api/sms.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_patch_api_v1_sms_template_uuid", - "confidence_score": 1.0 + "target": "api_sms_patch_api_v1_sms_template_uuid" }, { "relation": "contains", @@ -176738,9 +176769,9 @@ "source_file": "docs/api/sms.md", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_admin_sms_template_uuid_approve", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_admin_sms_template_uuid_approve" }, { "relation": "contains", @@ -176748,9 +176779,9 @@ "source_file": "docs/api/sms.md", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_admin_sms_template_uuid_reject" }, { "relation": "contains", @@ -176758,9 +176789,9 @@ "source_file": "docs/api/sms.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_sms_send", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_sms_send" }, { "relation": "contains", @@ -176768,9 +176799,9 @@ "source_file": "docs/api/sms.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_sms_send_template", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_sms_send_template" }, { "relation": "contains", @@ -176778,9 +176809,9 @@ "source_file": "docs/api/sms.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_sms_template", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_sms_template" }, { "relation": "contains", @@ -176788,9 +176819,9 @@ "source_file": "docs/api/sms.md", "source_location": "L191", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_post_api_v1_sms_template_uuid_submit", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_sms_template_uuid_submit" }, { "relation": "contains", @@ -176798,9 +176829,9 @@ "source_file": "docs/api/sms.md", "source_location": "L375", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_sms_settings", - "confidence_score": 1.0 + "target": "api_sms_sms_settings" }, { "relation": "contains", @@ -176808,9 +176839,9 @@ "source_file": "docs/api/sms.md", "source_location": "L304", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_sms_wallet", - "confidence_score": 1.0 + "target": "api_sms_sms_wallet" }, { "relation": "contains", @@ -176818,9 +176849,9 @@ "source_file": "docs/api/sms.md", "source_location": "L473", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_api", - "target": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", - "confidence_score": 1.0 + "target": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc" }, { "relation": "contains", @@ -176828,9 +176859,9 @@ "source_file": "docs/api/sms.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send", - "target": "api_sms_errors", - "confidence_score": 1.0 + "target": "api_sms_errors" }, { "relation": "contains", @@ -176838,9 +176869,9 @@ "source_file": "docs/api/sms.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send", - "target": "api_sms_request_body_application_json", - "confidence_score": 1.0 + "target": "api_sms_request_body_application_json" }, { "relation": "contains", @@ -176848,9 +176879,9 @@ "source_file": "docs/api/sms.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send", - "target": "api_sms_response_200", - "confidence_score": 1.0 + "target": "api_sms_response_200" }, { "relation": "contains", @@ -176858,9 +176889,9 @@ "source_file": "docs/api/sms.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_errors_81", - "confidence_score": 1.0 + "target": "api_sms_errors_81" }, { "relation": "contains", @@ -176868,9 +176899,9 @@ "source_file": "docs/api/sms.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_request_body_application_json_53", - "confidence_score": 1.0 + "target": "api_sms_request_body_application_json_53" }, { "relation": "contains", @@ -176878,9 +176909,9 @@ "source_file": "docs/api/sms.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_response_200_73", - "confidence_score": 1.0 + "target": "api_sms_response_200_73" }, { "relation": "contains", @@ -176888,9 +176919,9 @@ "source_file": "docs/api/sms.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template", - "target": "api_sms_errors_135", - "confidence_score": 1.0 + "target": "api_sms_errors_135" }, { "relation": "contains", @@ -176898,9 +176929,9 @@ "source_file": "docs/api/sms.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template", - "target": "api_sms_request_body_application_json_97", - "confidence_score": 1.0 + "target": "api_sms_request_body_application_json_97" }, { "relation": "contains", @@ -176908,9 +176939,9 @@ "source_file": "docs/api/sms.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template", - "target": "api_sms_response_201", - "confidence_score": 1.0 + "target": "api_sms_response_201" }, { "relation": "contains", @@ -176918,9 +176949,9 @@ "source_file": "docs/api/sms.md", "source_location": "L153", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_get_api_v1_sms_template_uuid", - "target": "api_sms_errors_153", - "confidence_score": 1.0 + "target": "api_sms_errors_153" }, { "relation": "contains", @@ -176928,9 +176959,9 @@ "source_file": "docs/api/sms.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_get_api_v1_sms_template_uuid", - "target": "api_sms_response_200_150", - "confidence_score": 1.0 + "target": "api_sms_response_200_150" }, { "relation": "contains", @@ -176938,9 +176969,9 @@ "source_file": "docs/api/sms.md", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_errors_181", - "confidence_score": 1.0 + "target": "api_sms_errors_181" }, { "relation": "contains", @@ -176948,9 +176979,9 @@ "source_file": "docs/api/sms.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_request_body_application_json_167", - "confidence_score": 1.0 + "target": "api_sms_request_body_application_json_167" }, { "relation": "contains", @@ -176958,9 +176989,9 @@ "source_file": "docs/api/sms.md", "source_location": "L178", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_response_200_178", - "confidence_score": 1.0 + "target": "api_sms_response_200_178" }, { "relation": "contains", @@ -176968,9 +176999,9 @@ "source_file": "docs/api/sms.md", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template_uuid_submit", - "target": "api_sms_errors_200", - "confidence_score": 1.0 + "target": "api_sms_errors_200" }, { "relation": "contains", @@ -176978,9 +177009,9 @@ "source_file": "docs/api/sms.md", "source_location": "L197", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template_uuid_submit", - "target": "api_sms_response_200_197", - "confidence_score": 1.0 + "target": "api_sms_response_200_197" }, { "relation": "contains", @@ -176988,9 +177019,9 @@ "source_file": "docs/api/sms.md", "source_location": "L221", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_delete_api_v1_sms_template_uuid", - "target": "api_sms_errors_221", - "confidence_score": 1.0 + "target": "api_sms_errors_221" }, { "relation": "contains", @@ -176998,9 +177029,9 @@ "source_file": "docs/api/sms.md", "source_location": "L216", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_delete_api_v1_sms_template_uuid", - "target": "api_sms_response_200_216", - "confidence_score": 1.0 + "target": "api_sms_response_200_216" }, { "relation": "contains", @@ -177008,9 +177039,9 @@ "source_file": "docs/api/sms.md", "source_location": "L236", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_get_api_v1_admin_sms_templates", - "target": "api_sms_response_200_236", - "confidence_score": 1.0 + "target": "api_sms_response_200_236" }, { "relation": "contains", @@ -177018,9 +177049,9 @@ "source_file": "docs/api/sms.md", "source_location": "L259", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", - "target": "api_sms_request_body_application_json_259", - "confidence_score": 1.0 + "target": "api_sms_request_body_application_json_259" }, { "relation": "contains", @@ -177028,9 +177059,9 @@ "source_file": "docs/api/sms.md", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", - "target": "api_sms_response_200_272", - "confidence_score": 1.0 + "target": "api_sms_response_200_272" }, { "relation": "contains", @@ -177038,9 +177069,9 @@ "source_file": "docs/api/sms.md", "source_location": "L297", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "target": "api_sms_errors_297", - "confidence_score": 1.0 + "target": "api_sms_errors_297" }, { "relation": "contains", @@ -177048,9 +177079,9 @@ "source_file": "docs/api/sms.md", "source_location": "L283", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "target": "api_sms_request_body", - "confidence_score": 1.0 + "target": "api_sms_request_body" }, { "relation": "contains", @@ -177058,9 +177089,9 @@ "source_file": "docs/api/sms.md", "source_location": "L294", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "target": "api_sms_response_200_294", - "confidence_score": 1.0 + "target": "api_sms_response_200_294" }, { "relation": "contains", @@ -177068,9 +177099,9 @@ "source_file": "docs/api/sms.md", "source_location": "L308", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_wallet", - "target": "api_sms_get_api_v1_sms_wallet_balance", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_sms_wallet_balance" }, { "relation": "contains", @@ -177078,9 +177109,9 @@ "source_file": "docs/api/sms.md", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_wallet", - "target": "api_sms_get_api_v1_sms_wallet_logs", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_sms_wallet_logs" }, { "relation": "contains", @@ -177088,9 +177119,9 @@ "source_file": "docs/api/sms.md", "source_location": "L323", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_wallet", - "target": "api_sms_post_api_v1_sms_wallet_charge", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_sms_wallet_charge" }, { "relation": "contains", @@ -177098,9 +177129,9 @@ "source_file": "docs/api/sms.md", "source_location": "L377", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_settings", - "target": "api_sms_get_api_v1_sms_settings", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_sms_settings" }, { "relation": "contains", @@ -177108,9 +177139,9 @@ "source_file": "docs/api/sms.md", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_sms_settings", - "target": "api_sms_patch_api_v1_sms_settings", - "confidence_score": 1.0 + "target": "api_sms_patch_api_v1_sms_settings" }, { "relation": "contains", @@ -177118,9 +177149,9 @@ "source_file": "docs/api/sms.md", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_admin_endpoints", - "target": "api_sms_get_api_v1_admin_sms_settings_review", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_admin_sms_settings_review" }, { "relation": "contains", @@ -177128,9 +177159,9 @@ "source_file": "docs/api/sms.md", "source_location": "L467", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_admin_endpoints", - "target": "api_sms_get_api_v1_admin_sms_wallet_report", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_admin_sms_wallet_report" }, { "relation": "contains", @@ -177138,9 +177169,9 @@ "source_file": "docs/api/sms.md", "source_location": "L453", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_admin_endpoints", - "target": "api_sms_post_api_v1_admin_sms_settings_id_approve", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_admin_sms_settings_id_approve" }, { "relation": "contains", @@ -177148,9 +177179,9 @@ "source_file": "docs/api/sms.md", "source_location": "L457", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_admin_endpoints", - "target": "api_sms_post_api_v1_admin_sms_settings_id_reject", - "confidence_score": 1.0 + "target": "api_sms_post_api_v1_admin_sms_settings_id_reject" }, { "relation": "contains", @@ -177158,9 +177189,9 @@ "source_file": "docs/api/sms.md", "source_location": "L481", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", - "target": "api_sms_get_api_v1_admin_sms_messages", - "confidence_score": 1.0 + "target": "api_sms_get_api_v1_admin_sms_messages" }, { "relation": "contains", @@ -177168,9 +177199,9 @@ "source_file": "docs/api/sms.md", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", - "target": "api_sms_patch_api_v1_admin_sms_messages_tag", - "confidence_score": 1.0 + "target": "api_sms_patch_api_v1_admin_sms_messages_tag" }, { "relation": "contains", @@ -177178,9 +177209,9 @@ "source_file": "docs/api/sms.md", "source_location": "L487", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_get_api_v1_admin_sms_messages", - "target": "api_sms_response_200_487", - "confidence_score": 1.0 + "target": "api_sms_response_200_487" }, { "relation": "contains", @@ -177188,9 +177219,9 @@ "source_file": "docs/api/sms.md", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_errors_529", - "confidence_score": 1.0 + "target": "api_sms_errors_529" }, { "relation": "contains", @@ -177198,9 +177229,9 @@ "source_file": "docs/api/sms.md", "source_location": "L511", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_path_parameters", - "confidence_score": 1.0 + "target": "api_sms_path_parameters" }, { "relation": "contains", @@ -177208,9 +177239,9 @@ "source_file": "docs/api/sms.md", "source_location": "L516", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_request_body_516", - "confidence_score": 1.0 + "target": "api_sms_request_body_516" }, { "relation": "contains", @@ -177218,9 +177249,9 @@ "source_file": "docs/api/sms.md", "source_location": "L524", "weight": 1.0, + "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_response_200_524", - "confidence_score": 1.0 + "target": "api_sms_response_200_524" }, { "relation": "contains", @@ -177228,9 +177259,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty", - "target": "api_specialty_specialty_api", - "confidence_score": 1.0 + "target": "api_specialty_specialty_api" }, { "relation": "contains", @@ -177238,9 +177269,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_delete_api_v1_admin_specialty_id", - "confidence_score": 1.0 + "target": "api_specialty_delete_api_v1_admin_specialty_id" }, { "relation": "contains", @@ -177248,9 +177279,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_get_api_v1_admin_specialties", - "confidence_score": 1.0 + "target": "api_specialty_get_api_v1_admin_specialties" }, { "relation": "contains", @@ -177258,9 +177289,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_get_api_v1_specialties", - "confidence_score": 1.0 + "target": "api_specialty_get_api_v1_specialties" }, { "relation": "contains", @@ -177268,9 +177299,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_get_api_v1_specialties_doctor_counts", - "confidence_score": 1.0 + "target": "api_specialty_get_api_v1_specialties_doctor_counts" }, { "relation": "contains", @@ -177278,9 +177309,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_patch_api_v1_admin_specialty_id", - "confidence_score": 1.0 + "target": "api_specialty_patch_api_v1_admin_specialty_id" }, { "relation": "contains", @@ -177288,9 +177319,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_specialty_api", - "target": "api_specialty_post_api_v1_admin_specialty", - "confidence_score": 1.0 + "target": "api_specialty_post_api_v1_admin_specialty" }, { "relation": "contains", @@ -177298,9 +177329,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_specialties", - "target": "api_specialty_query_parameters", - "confidence_score": 1.0 + "target": "api_specialty_query_parameters" }, { "relation": "contains", @@ -177308,9 +177339,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_specialties", - "target": "api_specialty_response_200", - "confidence_score": 1.0 + "target": "api_specialty_response_200" }, { "relation": "contains", @@ -177318,9 +177349,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_specialties_doctor_counts", - "target": "api_specialty_query_parameters_51", - "confidence_score": 1.0 + "target": "api_specialty_query_parameters_51" }, { "relation": "contains", @@ -177328,9 +177359,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_specialties_doctor_counts", - "target": "api_specialty_response_200_56", - "confidence_score": 1.0 + "target": "api_specialty_response_200_56" }, { "relation": "contains", @@ -177338,9 +177369,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_admin_specialties", - "target": "api_specialty_errors", - "confidence_score": 1.0 + "target": "api_specialty_errors" }, { "relation": "contains", @@ -177348,9 +177379,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_admin_specialties", - "target": "api_specialty_query_parameters_84", - "confidence_score": 1.0 + "target": "api_specialty_query_parameters_84" }, { "relation": "contains", @@ -177358,9 +177389,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_get_api_v1_admin_specialties", - "target": "api_specialty_response_200_91", - "confidence_score": 1.0 + "target": "api_specialty_response_200_91" }, { "relation": "contains", @@ -177368,9 +177399,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_post_api_v1_admin_specialty", - "target": "api_specialty_errors_136", - "confidence_score": 1.0 + "target": "api_specialty_errors_136" }, { "relation": "contains", @@ -177378,9 +177409,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_post_api_v1_admin_specialty", - "target": "api_specialty_request_body_application_json", - "confidence_score": 1.0 + "target": "api_specialty_request_body_application_json" }, { "relation": "contains", @@ -177388,9 +177419,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_post_api_v1_admin_specialty", - "target": "api_specialty_response_201", - "confidence_score": 1.0 + "target": "api_specialty_response_201" }, { "relation": "contains", @@ -177398,9 +177429,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_patch_api_v1_admin_specialty_id", - "target": "api_specialty_errors_170", - "confidence_score": 1.0 + "target": "api_specialty_errors_170" }, { "relation": "contains", @@ -177408,9 +177439,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_patch_api_v1_admin_specialty_id", - "target": "api_specialty_path_parameters", - "confidence_score": 1.0 + "target": "api_specialty_path_parameters" }, { "relation": "contains", @@ -177418,9 +177449,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_patch_api_v1_admin_specialty_id", - "target": "api_specialty_request_body_all_optional", - "confidence_score": 1.0 + "target": "api_specialty_request_body_all_optional" }, { "relation": "contains", @@ -177428,9 +177459,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L167", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_patch_api_v1_admin_specialty_id", - "target": "api_specialty_response_200_167", - "confidence_score": 1.0 + "target": "api_specialty_response_200_167" }, { "relation": "contains", @@ -177438,9 +177469,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_delete_api_v1_admin_specialty_id", - "target": "api_specialty_errors_190", - "confidence_score": 1.0 + "target": "api_specialty_errors_190" }, { "relation": "contains", @@ -177448,9 +177479,9 @@ "source_file": "docs/api/specialty.md", "source_location": "L185", "weight": 1.0, + "confidence_score": 1.0, "source": "api_specialty_delete_api_v1_admin_specialty_id", - "target": "api_specialty_response_200_185", - "confidence_score": 1.0 + "target": "api_specialty_response_200_185" }, { "relation": "contains", @@ -177458,9 +177489,9 @@ "source_file": "docs/api/staff.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_staff", - "target": "api_staff_staff_api", - "confidence_score": 1.0 + "target": "api_staff_staff_api" }, { "relation": "contains", @@ -177468,9 +177499,9 @@ "source_file": "docs/api/staff.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_staff_staff_api", - "target": "api_staff_get_api_v1_staff", - "confidence_score": 1.0 + "target": "api_staff_get_api_v1_staff" }, { "relation": "contains", @@ -177478,9 +177509,9 @@ "source_file": "docs/api/staff.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "api_staff_staff_api", - "target": "api_staff_patch_api_v1_staff_uuid", - "confidence_score": 1.0 + "target": "api_staff_patch_api_v1_staff_uuid" }, { "relation": "contains", @@ -177488,9 +177519,9 @@ "source_file": "docs/api/staff.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "api_staff_staff_api", - "target": "api_staff_patch_api_v1_staff_uuid_toggle", - "confidence_score": 1.0 + "target": "api_staff_patch_api_v1_staff_uuid_toggle" }, { "relation": "contains", @@ -177498,9 +177529,9 @@ "source_file": "docs/api/staff.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "api_staff_staff_api", - "target": "api_staff_post_api_v1_staff", - "confidence_score": 1.0 + "target": "api_staff_post_api_v1_staff" }, { "relation": "contains", @@ -177508,9 +177539,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription", - "target": "api_subscription_subscription_api", - "confidence_score": 1.0 + "target": "api_subscription_subscription_api" }, { "relation": "contains", @@ -177518,9 +177549,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_admin_endpoints", - "confidence_score": 1.0 + "target": "api_subscription_admin_endpoints" }, { "relation": "contains", @@ -177528,9 +177559,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L209", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_error_codes", - "confidence_score": 1.0 + "target": "api_subscription_error_codes" }, { "relation": "contains", @@ -177538,9 +177569,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_get_api_v1_subscription_my", - "confidence_score": 1.0 + "target": "api_subscription_get_api_v1_subscription_my" }, { "relation": "contains", @@ -177548,9 +177579,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_get_api_v1_subscription_payment_callback_gateway", - "confidence_score": 1.0 + "target": "api_subscription_get_api_v1_subscription_payment_callback_gateway" }, { "relation": "contains", @@ -177558,9 +177589,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_get_api_v1_subscription_plans", - "confidence_score": 1.0 + "target": "api_subscription_get_api_v1_subscription_plans" }, { "relation": "contains", @@ -177568,9 +177599,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_post_api_v1_subscription_payment", - "confidence_score": 1.0 + "target": "api_subscription_post_api_v1_subscription_payment" }, { "relation": "contains", @@ -177578,9 +177609,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_subscription_api", - "target": "api_subscription_post_api_v1_subscription_trial", - "confidence_score": 1.0 + "target": "api_subscription_post_api_v1_subscription_trial" }, { "relation": "contains", @@ -177588,9 +177619,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L180", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_delete_api_v1_admin_subscription_period_uuid", - "confidence_score": 1.0 + "target": "api_subscription_delete_api_v1_admin_subscription_period_uuid" }, { "relation": "contains", @@ -177598,9 +177629,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_get_api_v1_admin_subscription_plans", - "confidence_score": 1.0 + "target": "api_subscription_get_api_v1_admin_subscription_plans" }, { "relation": "contains", @@ -177608,9 +177639,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L183", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_get_api_v1_admin_subscription_report", - "confidence_score": 1.0 + "target": "api_subscription_get_api_v1_admin_subscription_report" }, { "relation": "contains", @@ -177618,9 +177649,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_patch_api_v1_admin_subscription_period_uuid", - "confidence_score": 1.0 + "target": "api_subscription_patch_api_v1_admin_subscription_period_uuid" }, { "relation": "contains", @@ -177628,9 +177659,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L160", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_patch_api_v1_admin_subscription_plan_uuid", - "confidence_score": 1.0 + "target": "api_subscription_patch_api_v1_admin_subscription_plan_uuid" }, { "relation": "contains", @@ -177638,9 +177669,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_post_api_v1_admin_subscription_period", - "confidence_score": 1.0 + "target": "api_subscription_post_api_v1_admin_subscription_period" }, { "relation": "contains", @@ -177648,9 +177679,9 @@ "source_file": "docs/api/subscription.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "api_subscription_admin_endpoints", - "target": "api_subscription_post_api_v1_admin_subscription_plan", - "confidence_score": 1.0 + "target": "api_subscription_post_api_v1_admin_subscription_plan" }, { "relation": "contains", @@ -177658,9 +177689,9 @@ "source_file": "docs/api/tag.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag", - "target": "api_tag_tag_api", - "confidence_score": 1.0 + "target": "api_tag_tag_api" }, { "relation": "contains", @@ -177668,9 +177699,9 @@ "source_file": "docs/api/tag.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_tag_api", - "target": "api_tag_delete_api_v1_admin_tag_id", - "confidence_score": 1.0 + "target": "api_tag_delete_api_v1_admin_tag_id" }, { "relation": "contains", @@ -177678,9 +177709,9 @@ "source_file": "docs/api/tag.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_tag_api", - "target": "api_tag_get_api_v1_admin_tags", - "confidence_score": 1.0 + "target": "api_tag_get_api_v1_admin_tags" }, { "relation": "contains", @@ -177688,9 +177719,9 @@ "source_file": "docs/api/tag.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_tag_api", - "target": "api_tag_get_api_v1_tags", - "confidence_score": 1.0 + "target": "api_tag_get_api_v1_tags" }, { "relation": "contains", @@ -177698,9 +177729,9 @@ "source_file": "docs/api/tag.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_tag_api", - "target": "api_tag_patch_api_v1_admin_tag_id", - "confidence_score": 1.0 + "target": "api_tag_patch_api_v1_admin_tag_id" }, { "relation": "contains", @@ -177708,9 +177739,9 @@ "source_file": "docs/api/tag.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_tag_api", - "target": "api_tag_post_api_v1_admin_tag", - "confidence_score": 1.0 + "target": "api_tag_post_api_v1_admin_tag" }, { "relation": "contains", @@ -177718,9 +177749,9 @@ "source_file": "docs/api/tag.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_get_api_v1_tags", - "target": "api_tag_response_200", - "confidence_score": 1.0 + "target": "api_tag_response_200" }, { "relation": "contains", @@ -177728,9 +177759,9 @@ "source_file": "docs/api/tag.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_get_api_v1_admin_tags", - "target": "api_tag_errors", - "confidence_score": 1.0 + "target": "api_tag_errors" }, { "relation": "contains", @@ -177738,9 +177769,9 @@ "source_file": "docs/api/tag.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_get_api_v1_admin_tags", - "target": "api_tag_query_parameters", - "confidence_score": 1.0 + "target": "api_tag_query_parameters" }, { "relation": "contains", @@ -177748,9 +177779,9 @@ "source_file": "docs/api/tag.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_get_api_v1_admin_tags", - "target": "api_tag_response_200_41", - "confidence_score": 1.0 + "target": "api_tag_response_200_41" }, { "relation": "contains", @@ -177758,9 +177789,9 @@ "source_file": "docs/api/tag.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_post_api_v1_admin_tag", - "target": "api_tag_errors_82", - "confidence_score": 1.0 + "target": "api_tag_errors_82" }, { "relation": "contains", @@ -177768,9 +177799,9 @@ "source_file": "docs/api/tag.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_post_api_v1_admin_tag", - "target": "api_tag_request_body_application_json", - "confidence_score": 1.0 + "target": "api_tag_request_body_application_json" }, { "relation": "contains", @@ -177778,9 +177809,9 @@ "source_file": "docs/api/tag.md", "source_location": "L79", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_post_api_v1_admin_tag", - "target": "api_tag_response_201", - "confidence_score": 1.0 + "target": "api_tag_response_201" }, { "relation": "contains", @@ -177788,9 +177819,9 @@ "source_file": "docs/api/tag.md", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_patch_api_v1_admin_tag_id", - "target": "api_tag_errors_107", - "confidence_score": 1.0 + "target": "api_tag_errors_107" }, { "relation": "contains", @@ -177798,9 +177829,9 @@ "source_file": "docs/api/tag.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_patch_api_v1_admin_tag_id", - "target": "api_tag_path_parameters", - "confidence_score": 1.0 + "target": "api_tag_path_parameters" }, { "relation": "contains", @@ -177808,9 +177839,9 @@ "source_file": "docs/api/tag.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_patch_api_v1_admin_tag_id", - "target": "api_tag_response_200_104", - "confidence_score": 1.0 + "target": "api_tag_response_200_104" }, { "relation": "contains", @@ -177818,9 +177849,9 @@ "source_file": "docs/api/tag.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_delete_api_v1_admin_tag_id", - "target": "api_tag_errors_127", - "confidence_score": 1.0 + "target": "api_tag_errors_127" }, { "relation": "contains", @@ -177828,9 +177859,9 @@ "source_file": "docs/api/tag.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "api_tag_delete_api_v1_admin_tag_id", - "target": "api_tag_response_200_122", - "confidence_score": 1.0 + "target": "api_tag_response_200_122" }, { "relation": "contains", @@ -177838,9 +177869,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile", - "target": "api_user_profile_user_profile_api", - "confidence_score": 1.0 + "target": "api_user_profile_user_profile_api" }, { "relation": "contains", @@ -177848,9 +177879,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_user_profile_api", - "target": "api_user_profile_delete_api_v1_user_profile_uuid", - "confidence_score": 1.0 + "target": "api_user_profile_delete_api_v1_user_profile_uuid" }, { "relation": "contains", @@ -177858,9 +177889,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_user_profile_api", - "target": "api_user_profile_get_api_v1_user_profile_uuid", - "confidence_score": 1.0 + "target": "api_user_profile_get_api_v1_user_profile_uuid" }, { "relation": "contains", @@ -177868,9 +177899,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_user_profile_api", - "target": "api_user_profile_patch_api_v1_user_profile_uuid", - "confidence_score": 1.0 + "target": "api_user_profile_patch_api_v1_user_profile_uuid" }, { "relation": "contains", @@ -177878,9 +177909,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_user_profile_api", - "target": "api_user_profile_post_api_v1_user_profile", - "confidence_score": 1.0 + "target": "api_user_profile_post_api_v1_user_profile" }, { "relation": "contains", @@ -177888,9 +177919,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_user_profile_api", - "target": "api_user_profile_post_api_v1_user_profile_avatar", - "confidence_score": 1.0 + "target": "api_user_profile_post_api_v1_user_profile_avatar" }, { "relation": "contains", @@ -177898,9 +177929,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile", - "target": "api_user_profile_errors", - "confidence_score": 1.0 + "target": "api_user_profile_errors" }, { "relation": "contains", @@ -177908,9 +177939,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile", - "target": "api_user_profile_request_body_application_json", - "confidence_score": 1.0 + "target": "api_user_profile_request_body_application_json" }, { "relation": "contains", @@ -177918,9 +177949,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile", - "target": "api_user_profile_response_201", - "confidence_score": 1.0 + "target": "api_user_profile_response_201" }, { "relation": "contains", @@ -177928,9 +177959,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L107", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_get_api_v1_user_profile_uuid", - "target": "api_user_profile_errors_107", - "confidence_score": 1.0 + "target": "api_user_profile_errors_107" }, { "relation": "contains", @@ -177938,9 +177969,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_get_api_v1_user_profile_uuid", - "target": "api_user_profile_path_parameters", - "confidence_score": 1.0 + "target": "api_user_profile_path_parameters" }, { "relation": "contains", @@ -177948,9 +177979,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_get_api_v1_user_profile_uuid", - "target": "api_user_profile_response_200", - "confidence_score": 1.0 + "target": "api_user_profile_response_200" }, { "relation": "contains", @@ -177958,9 +177989,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_patch_api_v1_user_profile_uuid", - "target": "api_user_profile_errors_137", - "confidence_score": 1.0 + "target": "api_user_profile_errors_137" }, { "relation": "contains", @@ -177968,9 +177999,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_patch_api_v1_user_profile_uuid", - "target": "api_user_profile_path_parameters_122", - "confidence_score": 1.0 + "target": "api_user_profile_path_parameters_122" }, { "relation": "contains", @@ -177978,9 +178009,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_patch_api_v1_user_profile_uuid", - "target": "api_user_profile_request_body", - "confidence_score": 1.0 + "target": "api_user_profile_request_body" }, { "relation": "contains", @@ -177988,9 +178019,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_patch_api_v1_user_profile_uuid", - "target": "api_user_profile_response_200_134", - "confidence_score": 1.0 + "target": "api_user_profile_response_200_134" }, { "relation": "contains", @@ -177998,9 +178029,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_delete_api_v1_user_profile_uuid", - "target": "api_user_profile_errors_159", - "confidence_score": 1.0 + "target": "api_user_profile_errors_159" }, { "relation": "contains", @@ -178008,9 +178039,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L154", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_delete_api_v1_user_profile_uuid", - "target": "api_user_profile_response_200_154", - "confidence_score": 1.0 + "target": "api_user_profile_response_200_154" }, { "relation": "contains", @@ -178018,9 +178049,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile_avatar", - "target": "api_user_profile_errors_184", - "confidence_score": 1.0 + "target": "api_user_profile_errors_184" }, { "relation": "contains", @@ -178028,9 +178059,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L174", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile_avatar", - "target": "api_user_profile_request", - "confidence_score": 1.0 + "target": "api_user_profile_request" }, { "relation": "contains", @@ -178038,9 +178069,9 @@ "source_file": "docs/api/user-profile.md", "source_location": "L177", "weight": 1.0, + "confidence_score": 1.0, "source": "api_user_profile_post_api_v1_user_profile_avatar", - "target": "api_user_profile_response_200_177", - "confidence_score": 1.0 + "target": "api_user_profile_response_200_177" }, { "relation": "contains", @@ -178048,9 +178079,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system", - "target": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc" }, { "relation": "contains", @@ -178058,9 +178089,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f0_\u062a\u0637\u0628\u06cc\u0642_\u0628\u0627_\u06a9\u062f_\u0641\u0639\u0644\u06cc_\u0645\u0628\u0646\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0647_greenfield", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f0_\u062a\u0637\u0628\u06cc\u0642_\u0628\u0627_\u06a9\u062f_\u0641\u0639\u0644\u06cc_\u0645\u0628\u0646\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0647_greenfield" }, { "relation": "contains", @@ -178068,9 +178099,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f1_bounded_contexts", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f1_bounded_contexts" }, { "relation": "contains", @@ -178078,9 +178109,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L385", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f1\u06f0_\u0622\u06cc\u0646\u062f\u0647_\u0627\u062a\u0635\u0627\u0644_\u0628\u0647_api_\u0628\u06cc\u0645\u0647_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u06f1\u06f0", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f1\u06f0_\u0622\u06cc\u0646\u062f\u0647_\u0627\u062a\u0635\u0627\u0644_\u0628\u0647_api_\u0628\u06cc\u0645\u0647_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f\u06cc_\u06f1\u06f0" }, { "relation": "contains", @@ -178088,9 +178119,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L390", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f1\u06f1_\u0641\u0627\u0632\u0628\u0646\u062f\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f1\u06f1_\u0641\u0627\u0632\u0628\u0646\u062f\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc" }, { "relation": "contains", @@ -178098,9 +178129,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f2_domain_model_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f2_domain_model_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627" }, { "relation": "contains", @@ -178108,9 +178139,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f3_entity_diagram_erd_\u0645\u062a\u0646\u06cc", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f3_entity_diagram_erd_\u0645\u062a\u0646\u06cc" }, { "relation": "contains", @@ -178118,9 +178149,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L236", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f4_aggregates_ddd", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f4_aggregates_ddd" }, { "relation": "contains", @@ -178128,9 +178159,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L248", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f5_\u0645\u0646\u0637\u0642_\u0645\u062d\u0627\u0633\u0628\u0647_\u06cc_\u0633\u0647\u0645_domain_service", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f5_\u0645\u0646\u0637\u0642_\u0645\u062d\u0627\u0633\u0628\u0647_\u06cc_\u0633\u0647\u0645_domain_service" }, { "relation": "contains", @@ -178138,9 +178169,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L304", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f6_repository_service_dto", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f6_repository_service_dto" }, { "relation": "contains", @@ -178148,9 +178179,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L319", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser" }, { "relation": "contains", @@ -178158,9 +178189,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L348", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f8_workflow", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f8_workflow" }, { "relation": "contains", @@ -178168,9 +178199,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L376", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0648_\u0628\u06cc\u0645\u0647_insurance_medical_billing_\u0633\u0646\u062f_\u0645\u0639\u0645\u0627\u0631\u06cc", - "target": "architecture_insurance_billing_system_\u06f9_events_use_cases", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u06f9_events_use_cases" }, { "relation": "contains", @@ -178178,9 +178209,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f2_domain_model_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627", - "target": "architecture_insurance_billing_system_2_1_value_objects", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_2_1_value_objects" }, { "relation": "contains", @@ -178188,9 +178219,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f2_domain_model_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_\u0647\u0627_\u0648_\u0641\u06cc\u0644\u062f\u0647\u0627", - "target": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644" }, { "relation": "contains", @@ -178198,9 +178229,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_claim_\u0645\u0637\u0627\u0644\u0628\u0647_\u06cc_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_claim_\u0645\u0637\u0627\u0644\u0628\u0647_\u06cc_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -178208,9 +178239,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L204", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_claimitem", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_claimitem" }, { "relation": "contains", @@ -178218,9 +178249,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_invoice", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_invoice" }, { "relation": "contains", @@ -178228,9 +178259,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_invoiceitem", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_invoiceitem" }, { "relation": "contains", @@ -178238,9 +178269,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_tariff_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_tariff_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631" }, { "relation": "contains", @@ -178248,9 +178279,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_tenantinsurance_\u0627\u0631\u062a\u0642\u0627\u06cc_entityinsurancepricing", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_tenantinsurance_\u0627\u0631\u062a\u0642\u0627\u06cc_entityinsurancepricing" }, { "relation": "contains", @@ -178258,9 +178289,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_2_2_entities_\u062c\u062f\u0627\u0648\u0644", - "target": "architecture_insurance_billing_system_tenantservicecoverage", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_tenantservicecoverage" }, { "relation": "contains", @@ -178268,9 +178299,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser", - "target": "architecture_insurance_billing_system_claim", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_claim" }, { "relation": "contains", @@ -178278,9 +178309,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L332", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser", - "target": "architecture_insurance_billing_system_invoice_332", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_invoice_332" }, { "relation": "contains", @@ -178288,9 +178319,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L328", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser", - "target": "architecture_insurance_billing_system_tariff", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_tariff" }, { "relation": "contains", @@ -178298,9 +178329,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L321", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f7_rest_api_\u062a\u062d\u062a_api_v1_basecontroller_tenant_\u0627\u0632_currentuser", - "target": "architecture_insurance_billing_system_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant" }, { "relation": "contains", @@ -178308,9 +178339,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L364", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f8_workflow", - "target": "architecture_insurance_billing_system_claim_364", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_claim_364" }, { "relation": "contains", @@ -178318,9 +178349,9 @@ "source_file": "docs/architecture/insurance-billing-system.md", "source_location": "L350", "weight": 1.0, + "confidence_score": 1.0, "source": "architecture_insurance_billing_system_\u06f8_workflow", - "target": "architecture_insurance_billing_system_\u062b\u0628\u062a_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "confidence_score": 1.0 + "target": "architecture_insurance_billing_system_\u062b\u0628\u062a_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628" }, { "relation": "contains", @@ -178328,9 +178359,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture", - "target": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -178338,9 +178369,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_controller_staffcontroller", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_controller_staffcontroller" }, { "relation": "contains", @@ -178348,9 +178379,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_entity_clinicstaff", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_entity_clinicstaff" }, { "relation": "contains", @@ -178358,9 +178389,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_service_staffservice", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_service_staffservice" }, { "relation": "contains", @@ -178368,9 +178399,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -178378,9 +178409,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L158", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_\u0646\u062d\u0648\u0647_\u062e\u0648\u0627\u0646\u062f\u0646_entity_type_entity_id_\u0627\u0632_jwt", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_\u0646\u062d\u0648\u0647_\u062e\u0648\u0627\u0646\u062f\u0646_entity_type_entity_id_\u0627\u0632_jwt" }, { "relation": "contains", @@ -178388,9 +178419,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/architecture.md", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_architecture_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u0647\u0627\u06cc_\u0622\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_10_staff_architecture_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u0647\u0627\u06cc_\u0622\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -178398,9 +178429,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_database", - "target": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -178408,9 +178439,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/database.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_database_migration_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_10_staff_database_migration_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -178418,9 +178449,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/database.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_staff_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -178428,9 +178459,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_database_\u062c\u062f\u0648\u0644_clinic_staff", - "confidence_score": 1.0 + "target": "task_10_staff_database_\u062c\u062f\u0648\u0644_clinic_staff" }, { "relation": "contains", @@ -178438,9 +178469,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/database.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_10_staff_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -178448,9 +178479,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task", - "target": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -178458,9 +178489,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_staff_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -178468,9 +178499,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -178478,9 +178509,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -178488,9 +178519,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -178498,9 +178529,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -178508,9 +178539,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -178518,9 +178549,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "task_10_staff_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627" }, { "relation": "contains", @@ -178528,9 +178559,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_10_staff_task_patch_api_v1_staff_uuid", - "confidence_score": 1.0 + "target": "task_10_staff_task_patch_api_v1_staff_uuid" }, { "relation": "contains", @@ -178538,9 +178569,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_10_staff_task_patch_api_v1_staff_uuid_toggle", - "confidence_score": 1.0 + "target": "task_10_staff_task_patch_api_v1_staff_uuid_toggle" }, { "relation": "contains", @@ -178548,9 +178579,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_10_staff_task_post_api_v1_staff", - "confidence_score": 1.0 + "target": "task_10_staff_task_post_api_v1_staff" }, { "relation": "contains", @@ -178558,9 +178589,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_10_staff_task_get_api_v1_staff", - "confidence_score": 1.0 + "target": "task_10_staff_task_get_api_v1_staff" }, { "relation": "contains", @@ -178568,9 +178599,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_10_staff_task_patch_api_v1_staff_uuid_toggle_92", - "confidence_score": 1.0 + "target": "task_10_staff_task_patch_api_v1_staff_uuid_toggle_92" }, { "relation": "contains", @@ -178578,9 +178609,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/task.md", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_10_staff_task_post_api_v1_staff_\u0645\u0648\u0641\u0642", - "confidence_score": 1.0 + "target": "task_10_staff_task_post_api_v1_staff_\u0645\u0648\u0641\u0642" }, { "relation": "contains", @@ -178588,9 +178619,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow", - "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff" }, { "relation": "contains", @@ -178598,9 +178629,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0633\u0646\u0644_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0633\u0646\u0644_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -178608,9 +178639,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_soft_delete", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_soft_delete" }, { "relation": "contains", @@ -178618,9 +178649,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0631\u0633\u0646\u0644", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0631\u0633\u0646\u0644" }, { "relation": "contains", @@ -178628,9 +178659,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend_staffpage_tsx", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend_staffpage_tsx" }, { "relation": "contains", @@ -178638,9 +178669,9 @@ "source_file": "docs/phase2_taskes/task-10-staff/user_flow.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_staff_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0631\u0633\u0646\u0644_staff", - "target": "task_10_staff_user_flow_\u0686\u0631\u0627_\u062d\u0630\u0641_\u0633\u062e\u062a_\u0645\u0645\u0646\u0648\u0639_\u0627\u0633\u062a", - "confidence_score": 1.0 + "target": "task_10_staff_user_flow_\u0686\u0631\u0627_\u062d\u0630\u0641_\u0633\u062e\u062a_\u0645\u0645\u0646\u0648\u0639_\u0627\u0633\u062a" }, { "relation": "contains", @@ -178648,9 +178679,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture", - "target": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers" }, { "relation": "contains", @@ -178658,9 +178689,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_entity_clinicsubscription", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_entity_clinicsubscription" }, { "relation": "contains", @@ -178668,9 +178699,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_entity_subscriptionperiod", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_entity_subscriptionperiod" }, { "relation": "contains", @@ -178678,9 +178709,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_entity_subscriptionplan", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_entity_subscriptionplan" }, { "relation": "contains", @@ -178688,9 +178719,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_service_subscriptionservice", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_service_subscriptionservice" }, { "relation": "contains", @@ -178698,9 +178729,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -178708,9 +178739,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/architecture.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_architecture_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_paymentcontroller", - "confidence_score": 1.0 + "target": "task_11_subscription_architecture_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_paymentcontroller" }, { "relation": "contains", @@ -178718,9 +178749,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database", - "target": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers" }, { "relation": "contains", @@ -178728,9 +178759,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_seed_data_migration_\u0627\u0648\u0644\u06cc\u0647", - "confidence_score": 1.0 + "target": "task_11_subscription_database_seed_data_migration_\u0627\u0648\u0644\u06cc\u0647" }, { "relation": "contains", @@ -178738,9 +178769,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_siteconfig_key_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_11_subscription_database_siteconfig_key_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -178748,9 +178779,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -178758,9 +178789,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_clinic_subscriptions", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_clinic_subscriptions" }, { "relation": "contains", @@ -178768,9 +178799,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_subscription_periods", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_subscription_periods" }, { "relation": "contains", @@ -178778,9 +178809,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_subscription_plans", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u062c\u062f\u0648\u0644_subscription_plans" }, { "relation": "contains", @@ -178788,9 +178819,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/database.md", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_11_subscription_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -178798,9 +178829,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task", - "target": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers" }, { "relation": "contains", @@ -178808,9 +178839,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_subscription_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -178818,9 +178849,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L156", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_gate_check_\u062f\u0631_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u0639\u062f\u06cc", - "confidence_score": 1.0 + "target": "task_11_subscription_task_gate_check_\u062f\u0631_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u0639\u062f\u06cc" }, { "relation": "contains", @@ -178828,9 +178859,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -178838,9 +178869,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -178848,9 +178879,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0633\u0637\u0648\u062d_\u067e\u0646\u0644", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0633\u0637\u0648\u062d_\u067e\u0646\u0644" }, { "relation": "contains", @@ -178858,9 +178889,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0642\u0627\u0646\u0648\u0646_\u062a\u0645\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0642\u0627\u0646\u0648\u0646_\u062a\u0645\u062f\u06cc\u062f" }, { "relation": "contains", @@ -178868,9 +178899,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062a\u0631\u06cc\u0627\u0644", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0642\u0648\u0627\u0646\u06cc\u0646_\u062a\u0631\u06cc\u0627\u0644" }, { "relation": "contains", @@ -178878,9 +178909,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -178888,9 +178919,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -178898,9 +178929,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc_subscription_tiers", - "target": "task_11_subscription_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_subscription_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -178908,9 +178939,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_11_subscription_task_post_api_v1_admin_subscription_period", - "confidence_score": 1.0 + "target": "task_11_subscription_task_post_api_v1_admin_subscription_period" }, { "relation": "contains", @@ -178918,9 +178949,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_11_subscription_task_post_api_v1_subscription_payment_\u0645\u0648\u062c\u0648\u062f", - "confidence_score": 1.0 + "target": "task_11_subscription_task_post_api_v1_subscription_payment_\u0645\u0648\u062c\u0648\u062f" }, { "relation": "contains", @@ -178928,9 +178959,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_11_subscription_task_post_api_v1_subscription_trial", - "confidence_score": 1.0 + "target": "task_11_subscription_task_post_api_v1_subscription_trial" }, { "relation": "contains", @@ -178938,9 +178969,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_11_subscription_task_get_api_v1_subscription_my", - "confidence_score": 1.0 + "target": "task_11_subscription_task_get_api_v1_subscription_my" }, { "relation": "contains", @@ -178948,9 +178979,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_11_subscription_task_get_api_v1_subscription_plans", - "confidence_score": 1.0 + "target": "task_11_subscription_task_get_api_v1_subscription_plans" }, { "relation": "contains", @@ -178958,9 +178989,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_11_subscription_task_post_api_v1_subscription_trial_\u062e\u0637\u0627_\u0642\u0628\u0644\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "task_11_subscription_task_post_api_v1_subscription_trial_\u062e\u0637\u0627_\u0642\u0628\u0644\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647" }, { "relation": "contains", @@ -178968,9 +178999,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/task.md", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_11_subscription_task_post_api_v1_subscription_trial_\u0645\u0648\u0641\u0642", - "confidence_score": 1.0 + "target": "task_11_subscription_task_post_api_v1_subscription_trial_\u0645\u0648\u0641\u0642" }, { "relation": "contains", @@ -178978,9 +179009,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow", - "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc" }, { "relation": "contains", @@ -178988,9 +179019,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_gate_check_\u062f\u0631_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u0639\u062f\u06cc", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_gate_check_\u062f\u0631_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u0628\u0639\u062f\u06cc" }, { "relation": "contains", @@ -178998,9 +179029,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0645\u062f\u06cc\u062f_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0645\u062f\u06cc\u062f_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -179008,9 +179039,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L81", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0646\u0644_\u0647\u0627_\u062a\u0648\u0633\u0637_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u067e\u0646\u0644_\u0647\u0627_\u062a\u0648\u0633\u0637_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -179018,9 +179049,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u067e\u0646\u0644_\u0647\u0627_\u0648_\u062e\u0631\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u067e\u0646\u0644_\u0647\u0627_\u0648_\u062e\u0631\u06cc\u062f" }, { "relation": "contains", @@ -179028,9 +179059,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend_subscriptionpage_tsx", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend_subscriptionpage_tsx" }, { "relation": "contains", @@ -179038,9 +179069,9 @@ "source_file": "docs/phase2_taskes/task-11-subscription/user_flow.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_subscription_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", - "target": "task_11_subscription_user_flow_\u0647\u0634\u062f\u0627\u0631_\u0627\u0646\u0642\u0636\u0627_frontend", - "confidence_score": 1.0 + "target": "task_11_subscription_user_flow_\u0647\u0634\u062f\u0627\u0631_\u0627\u0646\u0642\u0636\u0627_frontend" }, { "relation": "contains", @@ -179048,9 +179079,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture", - "target": "task_12_secretary_completion_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179058,9 +179089,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_backend", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_backend" }, { "relation": "contains", @@ -179068,9 +179099,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_frontend", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_frontend" }, { "relation": "contains", @@ -179078,9 +179109,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_architecture_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f" }, { "relation": "contains", @@ -179088,9 +179119,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_backend", - "target": "task_12_secretary_completion_architecture_secretarycontroller_constructor_injection", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_secretarycontroller_constructor_injection" }, { "relation": "contains", @@ -179098,9 +179129,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_backend", - "target": "task_12_secretary_completion_architecture_secretaryrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f_countactive", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_secretaryrepository_\u0645\u062a\u062f_\u062c\u062f\u06cc\u062f_countactive" }, { "relation": "contains", @@ -179108,9 +179139,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_frontend", - "target": "task_12_secretary_completion_architecture_secretariespage_tsx_\u0633\u0627\u062e\u062a\u0627\u0631_modal_permissions", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_secretariespage_tsx_\u0633\u0627\u062e\u062a\u0627\u0631_modal_permissions" }, { "relation": "contains", @@ -179118,9 +179149,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/architecture.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_architecture_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_frontend", - "target": "task_12_secretary_completion_architecture_\u0646\u06a9\u062a\u0647_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627\u06cc_403_\u062f\u0631_\u0641\u0631\u0645_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_architecture_\u0646\u06a9\u062a\u0647_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627\u06cc_403_\u062f\u0631_\u0641\u0631\u0645_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179128,9 +179159,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database", - "target": "task_12_secretary_completion_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179138,9 +179169,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_database_\u062c\u062f\u0648\u0644_doctor_secretaries_\u0645\u0631\u062c\u0639", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u062c\u062f\u0648\u0644_doctor_secretaries_\u0645\u0631\u062c\u0639" }, { "relation": "contains", @@ -179148,9 +179179,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_database_\u0633\u062a\u0648\u0646_\u0645\u0648\u062c\u0648\u062f_permissions_\u062f\u0631_doctor_secretaries", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u0633\u062a\u0648\u0646_\u0645\u0648\u062c\u0648\u062f_permissions_\u062f\u0631_doctor_secretaries" }, { "relation": "contains", @@ -179158,9 +179189,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_database_\u0647\u06cc\u0686_migration_\u0644\u0627\u0632\u0645_\u0646\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u0647\u06cc\u0686_migration_\u0644\u0627\u0632\u0645_\u0646\u06cc\u0633\u062a" }, { "relation": "contains", @@ -179168,9 +179199,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database_\u0633\u062a\u0648\u0646_\u0645\u0648\u062c\u0648\u062f_permissions_\u062f\u0631_doctor_secretaries", - "target": "task_12_secretary_completion_database_\u0633\u0627\u062e\u062a\u0627\u0631_json_\u0630\u062e\u06cc\u0631\u0647_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u0633\u0627\u062e\u062a\u0627\u0631_json_\u0630\u062e\u06cc\u0631\u0647_\u0634\u062f\u0647" }, { "relation": "contains", @@ -179178,9 +179209,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/database.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_database_\u0633\u062a\u0648\u0646_\u0645\u0648\u062c\u0648\u062f_permissions_\u062f\u0631_doctor_secretaries", - "target": "task_12_secretary_completion_database_\u0646\u06a9\u062a\u0647_version", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_database_\u0646\u06a9\u062a\u0647_version" }, { "relation": "contains", @@ -179188,9 +179219,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task", - "target": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions" }, { "relation": "contains", @@ -179198,9 +179229,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_api_\u0645\u0648\u062c\u0648\u062f_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_api_\u0645\u0648\u062c\u0648\u062f_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631" }, { "relation": "contains", @@ -179208,9 +179239,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L145", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_response_\u062e\u0637\u0627_403", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_response_\u062e\u0637\u0627_403" }, { "relation": "contains", @@ -179218,9 +179249,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_backend_secretarycontroller_create", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_backend_secretarycontroller_create" }, { "relation": "contains", @@ -179228,9 +179259,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_frontend_secretariespage_tsx", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_frontend_secretariespage_tsx" }, { "relation": "contains", @@ -179238,9 +179269,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -179248,9 +179279,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -179258,9 +179289,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f" }, { "relation": "contains", @@ -179268,9 +179299,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -179278,9 +179309,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_ui_permissions", - "target": "task_12_secretary_completion_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -179288,9 +179319,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_backend_secretarycontroller_create", - "target": "task_12_secretary_completion_task_\u062e\u0637\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u062f\u0631_errorcodes_php_\u0627\u0636\u0627\u0641\u0647_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u062e\u0637\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u062f\u0631_errorcodes_php_\u0627\u0636\u0627\u0641\u0647_\u0634\u0648\u062f" }, { "relation": "contains", @@ -179298,9 +179329,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_backend_secretarycontroller_create", - "target": "task_12_secretary_completion_task_\u0648\u0636\u0639\u06cc\u062a_\u062c\u062f\u06cc\u062f_\u0628\u0639\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0648\u0636\u0639\u06cc\u062a_\u062c\u062f\u06cc\u062f_\u0628\u0639\u062f" }, { "relation": "contains", @@ -179308,9 +179339,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_backend_secretarycontroller_create", - "target": "task_12_secretary_completion_task_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0642\u0628\u0644", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0642\u0628\u0644" }, { "relation": "contains", @@ -179318,9 +179349,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_frontend_secretariespage_tsx", - "target": "task_12_secretary_completion_task_patch_api_v1_secretary_uuid_\u0628\u0627_permissions", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_patch_api_v1_secretary_uuid_\u0628\u0627_permissions" }, { "relation": "contains", @@ -179328,9 +179359,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_frontend_secretariespage_tsx", - "target": "task_12_secretary_completion_task_\u0633\u0627\u062e\u062a\u0627\u0631_default_permissions_\u0627\u0632_doctorsecretary_default_permissions", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0633\u0627\u062e\u062a\u0627\u0631_default_permissions_\u0627\u0632_doctorsecretary_default_permissions" }, { "relation": "contains", @@ -179338,9 +179369,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/task.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_task_\u062a\u063a\u06cc\u06cc\u0631_frontend_secretariespage_tsx", - "target": "task_12_secretary_completion_task_\u0646\u0645\u0648\u0646\u0647_ui_permissions_checkbox_matrix_\u062f\u0631_modal", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_task_\u0646\u0645\u0648\u0646\u0647_ui_permissions_checkbox_matrix_\u062f\u0631_modal" }, { "relation": "contains", @@ -179348,9 +179379,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_user_flow", - "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179358,9 +179389,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/user_flow.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_user_flow_\u062a\u0631\u062a\u06cc\u0628_\u0633\u0637\u0648\u062d_\u0633\u0642\u0641_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_user_flow_\u062a\u0631\u062a\u06cc\u0628_\u0633\u0637\u0648\u062d_\u0633\u0642\u0641_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179368,9 +179399,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0641\u0632\u0648\u062f\u0646_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f_\u0628\u0627_\u0628\u0631\u0631\u0633\u06cc_\u0633\u0642\u0641_\u067e\u0646\u0644", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0641\u0632\u0648\u062f\u0646_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f_\u0628\u0627_\u0628\u0631\u0631\u0633\u06cc_\u0633\u0642\u0641_\u067e\u0646\u0644" }, { "relation": "contains", @@ -179378,9 +179409,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/user_flow.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_permissions_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_permissions_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -179388,9 +179419,9 @@ "source_file": "docs/phase2_taskes/task-12-secretary-completion/user_flow.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_secretary_completion_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u062a\u06a9\u0645\u06cc\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_12_secretary_completion_user_flow_\u0646\u06a9\u062a\u0647_\u0645\u0646\u0634\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0627\u0632_\u0633\u0642\u0641_\u06a9\u0645_\u0646\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "task_12_secretary_completion_user_flow_\u0646\u06a9\u062a\u0647_\u0645\u0646\u0634\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0627\u0632_\u0633\u0642\u0641_\u06a9\u0645_\u0646\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -179398,9 +179429,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture", - "target": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -179408,9 +179439,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_architecture_controller_clinicservicecontroller", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_controller_clinicservicecontroller" }, { "relation": "contains", @@ -179418,9 +179449,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_architecture_entity_serviceitem", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_entity_serviceitem" }, { "relation": "contains", @@ -179428,9 +179459,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_architecture_entity_servicesection", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_entity_servicesection" }, { "relation": "contains", @@ -179438,9 +179469,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -179448,9 +179479,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/architecture.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_architecture_\u0646\u06a9\u062a\u0647_delete_\u0633\u0631\u0648\u06cc\u0633_\u0628\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_13_clinic_services_architecture_\u0646\u06a9\u062a\u0647_delete_\u0633\u0631\u0648\u06cc\u0633_\u0628\u0627_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u067e\u0631\u0648\u0646\u062f\u0647" }, { "relation": "contains", @@ -179458,9 +179489,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_database", - "target": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -179468,9 +179499,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/database.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_database_migration_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_13_clinic_services_database_migration_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -179478,9 +179509,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/database.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_database_\u062c\u062f\u0648\u0644_service_items", - "confidence_score": 1.0 + "target": "task_13_clinic_services_database_\u062c\u062f\u0648\u0644_service_items" }, { "relation": "contains", @@ -179488,9 +179519,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_database_\u062c\u062f\u0648\u0644_service_sections", - "confidence_score": 1.0 + "target": "task_13_clinic_services_database_\u062c\u062f\u0648\u0644_service_sections" }, { "relation": "contains", @@ -179498,9 +179529,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/database.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_13_clinic_services_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -179508,9 +179539,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task", - "target": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services" }, { "relation": "contains", @@ -179518,9 +179549,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -179528,9 +179559,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -179538,9 +179569,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -179548,9 +179579,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -179558,9 +179589,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -179568,9 +179599,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -179578,9 +179609,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_clinic_services", - "target": "task_13_clinic_services_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627" }, { "relation": "contains", @@ -179588,9 +179619,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_13_clinic_services_task_patch_api_v1_service_item_uuid", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_patch_api_v1_service_item_uuid" }, { "relation": "contains", @@ -179598,9 +179629,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_13_clinic_services_task_post_api_v1_service_item", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_post_api_v1_service_item" }, { "relation": "contains", @@ -179608,9 +179639,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_13_clinic_services_task_post_api_v1_service_section", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_post_api_v1_service_section" }, { "relation": "contains", @@ -179618,9 +179649,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_13_clinic_services_task_get_api_v1_service_items_sectionuuid", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_get_api_v1_service_items_sectionuuid" }, { "relation": "contains", @@ -179628,9 +179659,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/task.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_13_clinic_services_task_get_api_v1_service_sections", - "confidence_score": 1.0 + "target": "task_13_clinic_services_task_get_api_v1_service_sections" }, { "relation": "contains", @@ -179638,9 +179669,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -179648,9 +179679,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_gate_check_\u06a9\u0627\u0631\u0628\u0631_free", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_gate_check_\u06a9\u0627\u0631\u0628\u0631_free" }, { "relation": "contains", @@ -179658,9 +179689,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L72", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u067e\u0631\u0633\u0646\u0644_\u0627\u0646\u062c\u0627\u0645_\u062f\u0647\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u067e\u0631\u0633\u0646\u0644_\u0627\u0646\u062c\u0627\u0645_\u062f\u0647\u0646\u062f\u0647" }, { "relation": "contains", @@ -179668,9 +179699,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u06cc\u062c\u0627\u062f_\u0628\u062e\u0634_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u06cc\u062c\u0627\u062f_\u0628\u062e\u0634_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -179678,9 +179709,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062d\u0630\u0641_\u0628\u062e\u0634", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062d\u0630\u0641_\u0628\u062e\u0634" }, { "relation": "contains", @@ -179688,9 +179719,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062d\u0630\u0641_\u0632\u06cc\u0631\u0628\u062e\u0634", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062d\u0630\u0641_\u0632\u06cc\u0631\u0628\u062e\u0634" }, { "relation": "contains", @@ -179698,9 +179729,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u0648_\u0627\u06cc\u062c\u0627\u062f_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627" }, { "relation": "contains", @@ -179708,9 +179739,9 @@ "source_file": "docs/phase2_taskes/task-13-clinic-services/user_flow.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_clinic_services_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_13_clinic_services_user_flow_\u0633\u0627\u062e\u062a\u0627\u0631_\u0646\u0645\u0627\u06cc\u0634_servicespage_tsx", - "confidence_score": 1.0 + "target": "task_13_clinic_services_user_flow_\u0633\u0627\u062e\u062a\u0627\u0631_\u0646\u0645\u0627\u06cc\u0634_servicespage_tsx" }, { "relation": "contains", @@ -179718,9 +179749,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture", - "target": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc" }, { "relation": "contains", @@ -179728,9 +179759,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_entity_smssettings", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_entity_smssettings" }, { "relation": "contains", @@ -179738,9 +179769,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_entity_smswallet", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_entity_smswallet" }, { "relation": "contains", @@ -179748,9 +179779,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_entity_smswallettransaction", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_entity_smswallettransaction" }, { "relation": "contains", @@ -179758,9 +179789,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_smswalletservice", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_smswalletservice" }, { "relation": "contains", @@ -179768,9 +179799,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_\u062a\u063a\u06cc\u06cc\u0631_smsservice_send", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_\u062a\u063a\u06cc\u06cc\u0631_smsservice_send" }, { "relation": "contains", @@ -179778,9 +179809,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_sms_panel_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -179788,9 +179819,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database", - "target": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc" }, { "relation": "contains", @@ -179798,9 +179829,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_migration_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_migration_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -179808,9 +179839,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_siteconfig_key_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_siteconfig_key_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -179818,9 +179849,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_settings", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_settings" }, { "relation": "contains", @@ -179828,9 +179859,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_wallet_transactions", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_wallet_transactions" }, { "relation": "contains", @@ -179838,9 +179869,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_wallets", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_\u062c\u062f\u0648\u0644_sms_wallets" }, { "relation": "contains", @@ -179848,9 +179879,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/database.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_14_sms_panel_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -179858,9 +179889,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task", - "target": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel" }, { "relation": "contains", @@ -179868,9 +179899,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_endpoint_\u0647\u0627_\u0647\u0645\u0647_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_endpoint_\u0647\u0627_\u0647\u0645\u0647_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -179878,9 +179909,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_siteconfig_key_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_siteconfig_key_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637" }, { "relation": "contains", @@ -179888,9 +179919,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -179898,9 +179929,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -179908,9 +179939,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -179918,9 +179949,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -179928,9 +179959,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -179938,9 +179969,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_sms_panel", - "target": "task_14_sms_panel_task_\u06a9\u0633\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_\u06a9\u0633\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -179948,9 +179979,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_14_sms_panel_task_patch_api_v1_sms_settings", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_patch_api_v1_sms_settings" }, { "relation": "contains", @@ -179958,9 +179989,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_14_sms_panel_task_post_api_v1_sms_wallet_charge", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_post_api_v1_sms_wallet_charge" }, { "relation": "contains", @@ -179968,9 +179999,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_14_sms_panel_task_get_api_v1_admin_sms_wallet_report", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_get_api_v1_admin_sms_wallet_report" }, { "relation": "contains", @@ -179978,9 +180009,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_14_sms_panel_task_get_api_v1_sms_settings", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_get_api_v1_sms_settings" }, { "relation": "contains", @@ -179988,9 +180019,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_14_sms_panel_task_get_api_v1_sms_wallet_balance", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_get_api_v1_sms_wallet_balance" }, { "relation": "contains", @@ -179998,9 +180029,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/task.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_14_sms_panel_task_get_api_v1_sms_wallet_logs", - "confidence_score": 1.0 + "target": "task_14_sms_panel_task_get_api_v1_sms_wallet_logs" }, { "relation": "contains", @@ -180008,9 +180039,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_user_flow", - "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "confidence_score": 1.0 + "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc" }, { "relation": "contains", @@ -180018,9 +180049,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/user_flow.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u06cc\u0627\u062f\u0622\u0648\u0631\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631", - "confidence_score": 1.0 + "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u06cc\u0627\u062f\u0622\u0648\u0631\u06cc_\u062e\u0648\u062f\u06a9\u0627\u0631" }, { "relation": "contains", @@ -180028,9 +180059,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0634\u0627\u0631\u0698_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0634\u0627\u0631\u0698_\u06a9\u06cc\u0641_\u067e\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -180038,9 +180069,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/user_flow.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0633\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u06cc\u0627\u062f\u0622\u0648\u0631\u06cc", - "confidence_score": 1.0 + "target": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0633\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u06cc\u0627\u062f\u0622\u0648\u0631\u06cc" }, { "relation": "contains", @@ -180048,9 +180079,9 @@ "source_file": "docs/phase2_taskes/task-14-sms-panel/user_flow.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_sms_panel_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u067e\u0646\u0644_\u067e\u06cc\u0627\u0645\u06a9\u06cc", - "target": "task_14_sms_panel_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend", - "confidence_score": 1.0 + "target": "task_14_sms_panel_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0631_frontend" }, { "relation": "contains", @@ -180058,9 +180089,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture", - "target": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -180068,9 +180099,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_entity_patientrecord", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_entity_patientrecord" }, { "relation": "contains", @@ -180078,9 +180109,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_entity_patientsession", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_entity_patientsession" }, { "relation": "contains", @@ -180088,9 +180119,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_entity_sessionservice_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062f\u0631_\u0633\u0634\u0646", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_entity_sessionservice_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062f\u0631_\u0633\u0634\u0646" }, { "relation": "contains", @@ -180098,9 +180129,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_patientservice", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_patientservice" }, { "relation": "contains", @@ -180108,9 +180139,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L195", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_\u062a\u063a\u06cc\u06cc\u0631_\u062f\u0631_appointmentcontroller", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_\u062a\u063a\u06cc\u06cc\u0631_\u062f\u0631_appointmentcontroller" }, { "relation": "contains", @@ -180118,9 +180149,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_patient_records_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -180128,9 +180159,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database", - "target": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -180138,9 +180169,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_database_migration_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_migration_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -180148,9 +180179,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_patient_records", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_patient_records" }, { "relation": "contains", @@ -180158,9 +180189,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_patient_sessions", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_patient_sessions" }, { "relation": "contains", @@ -180168,9 +180199,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_session_services", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_\u062c\u062f\u0648\u0644_session_services" }, { "relation": "contains", @@ -180178,9 +180209,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/database.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_15_patient_records_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -180188,9 +180219,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task", - "target": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records" }, { "relation": "contains", @@ -180198,9 +180229,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -180208,9 +180239,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u0627\u06cc\u062c\u0627\u062f_\u062e\u0648\u062f\u06a9\u0627\u0631_\u067e\u0631\u0648\u0646\u062f\u0647_\u0647\u0646\u06af\u0627\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u0627\u06cc\u062c\u0627\u062f_\u062e\u0648\u062f\u06a9\u0627\u0631_\u067e\u0631\u0648\u0646\u062f\u0647_\u0647\u0646\u06af\u0627\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -180218,9 +180249,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -180228,9 +180259,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -180238,9 +180269,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u0641\u0631\u0645\u0648\u0644_\u0645\u062d\u0627\u0633\u0628\u0647_final_price", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u0641\u0631\u0645\u0648\u0644_\u0645\u062d\u0627\u0633\u0628\u0647_final_price" }, { "relation": "contains", @@ -180248,9 +180279,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -180258,9 +180289,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -180268,9 +180299,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -180278,9 +180309,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631_patient_records", - "target": "task_15_patient_records_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627" }, { "relation": "contains", @@ -180288,9 +180319,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_15_patient_records_task_patch_api_v1_session_uuid", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_patch_api_v1_session_uuid" }, { "relation": "contains", @@ -180298,9 +180329,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_15_patient_records_task_post_api_v1_patient_uuid_session", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_post_api_v1_patient_uuid_session" }, { "relation": "contains", @@ -180308,9 +180339,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_15_patient_records_task_post_api_v1_patient_\u0627\u06cc\u062c\u0627\u062f_\u062f\u0633\u062a\u06cc", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_post_api_v1_patient_\u0627\u06cc\u062c\u0627\u062f_\u062f\u0633\u062a\u06cc" }, { "relation": "contains", @@ -180318,9 +180349,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_15_patient_records_task_get_api_v1_patient_uuid", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_get_api_v1_patient_uuid" }, { "relation": "contains", @@ -180328,9 +180359,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_15_patient_records_task_get_api_v1_patient_uuid_sessions", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_get_api_v1_patient_uuid_sessions" }, { "relation": "contains", @@ -180338,9 +180369,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/task.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_15_patient_records_task_get_api_v1_patients_search_\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "task_15_patient_records_task_get_api_v1_patients_search_\u0639\u0644\u06cc" }, { "relation": "contains", @@ -180348,9 +180379,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow", - "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -180358,9 +180389,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u0633\u0634\u0646", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0645\u0631\u0627\u062c\u0639\u0647_\u0633\u0634\u0646" }, { "relation": "contains", @@ -180368,9 +180399,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062c\u0633\u062a\u062c\u0648_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062c\u0633\u062a\u062c\u0648_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -180378,9 +180409,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062e\u0648\u062f\u06a9\u0627\u0631_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0648\u0628\u062a_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0646\u062f\u0647" }, { "relation": "contains", @@ -180388,9 +180419,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L33", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0633\u062a\u06cc_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0646\u062f\u0647_\u062a\u0648\u0633\u0637_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0633\u062a\u06cc_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0646\u062f\u0647_\u062a\u0648\u0633\u0637_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -180398,9 +180429,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u0645\u062d\u0627\u0633\u0628\u0647_real_time_\u062f\u0631_frontend", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u0645\u062d\u0627\u0633\u0628\u0647_real_time_\u062f\u0631_frontend" }, { "relation": "contains", @@ -180408,9 +180439,9 @@ "source_file": "docs/phase2_taskes/task-15-patient-records/user_flow.md", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_patient_records_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u067e\u0631\u0648\u0646\u062f\u0647_\u0628\u06cc\u0645\u0627\u0631", - "target": "task_15_patient_records_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u0635\u0641\u062d\u0647_\u0628\u06cc\u0645\u0627\u0631_patientdetailpage_tsx", - "confidence_score": 1.0 + "target": "task_15_patient_records_user_flow_\u0646\u0645\u0627\u06cc\u0634_\u0635\u0641\u062d\u0647_\u0628\u06cc\u0645\u0627\u0631_patientdetailpage_tsx" }, { "relation": "contains", @@ -180418,9 +180449,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture", - "target": "task_16_smart_dashboard_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f" }, { "relation": "contains", @@ -180428,9 +180459,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_backend", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_backend" }, { "relation": "contains", @@ -180438,9 +180469,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_frontend_dashboardpage_tsx", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_frontend_dashboardpage_tsx" }, { "relation": "contains", @@ -180448,9 +180479,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_architecture_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f" }, { "relation": "contains", @@ -180458,9 +180489,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_backend", - "target": "task_16_smart_dashboard_architecture_adminapicontroller_dashboardcharts_\u0628\u0627_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_adminapicontroller_dashboardcharts_\u0628\u0627_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc" }, { "relation": "contains", @@ -180468,9 +180499,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_backend", - "target": "task_16_smart_dashboard_architecture_dashboardcontroller_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_from_to", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_dashboardcontroller_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_from_to" }, { "relation": "contains", @@ -180478,9 +180509,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_frontend_dashboardpage_tsx", - "target": "task_16_smart_dashboard_architecture_date_range_selector_component", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_date_range_selector_component" }, { "relation": "contains", @@ -180488,9 +180519,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_frontend_dashboardpage_tsx", - "target": "task_16_smart_dashboard_architecture_\u0646\u0635\u0628_dependency", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u0646\u0635\u0628_dependency" }, { "relation": "contains", @@ -180498,9 +180529,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/architecture.md", "source_location": "L74", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_architecture_\u062a\u063a\u06cc\u06cc\u0631_frontend_dashboardpage_tsx", - "target": "task_16_smart_dashboard_architecture_\u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627_\u0628\u0627_recharts", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_architecture_\u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627_\u0628\u0627_recharts" }, { "relation": "contains", @@ -180508,9 +180539,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database", - "target": "task_16_smart_dashboard_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f" }, { "relation": "contains", @@ -180518,9 +180549,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f" }, { "relation": "contains", @@ -180528,9 +180559,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -180538,9 +180569,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_database_\u0647\u06cc\u0686_migration_\u0644\u0627\u0632\u0645_\u0646\u06cc\u0633\u062a", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u0647\u06cc\u0686_migration_\u0644\u0627\u0632\u0645_\u0646\u06cc\u0633\u062a" }, { "relation": "contains", @@ -180548,9 +180579,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "task_16_smart_dashboard_database_\u0628\u06cc\u0645\u0627\u0631\u0627\u0646_\u0645\u0646\u062d\u0635\u0631\u0628\u0647_\u0641\u0631\u062f_\u062f\u0631_\u0628\u0627\u0632\u0647", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u0628\u06cc\u0645\u0627\u0631\u0627\u0646_\u0645\u0646\u062d\u0635\u0631\u0628\u0647_\u0641\u0631\u062f_\u062f\u0631_\u0628\u0627\u0632\u0647" }, { "relation": "contains", @@ -180558,9 +180589,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "task_16_smart_dashboard_database_\u062f\u0631\u0622\u0645\u062f_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0631\u0648\u0632_\u0627\u0632_patient_sessions", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u062f\u0631\u0622\u0645\u062f_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0631\u0648\u0632_\u0627\u0632_patient_sessions" }, { "relation": "contains", @@ -180568,9 +180599,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "task_16_smart_dashboard_database_\u0641\u0631\u0648\u0634_\u0627\u0634\u062a\u0631\u0627\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u067e\u0646\u0644_admin", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u0641\u0631\u0648\u0634_\u0627\u0634\u062a\u0631\u0627\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u067e\u0646\u0644_admin" }, { "relation": "contains", @@ -180578,9 +180609,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/database.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_database_query_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f", - "target": "task_16_smart_dashboard_database_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0631\u0648\u0632_admin_chart", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_database_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0631\u0648\u0632_admin_chart" }, { "relation": "contains", @@ -180588,9 +180619,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task", - "target": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc" }, { "relation": "contains", @@ -180598,9 +180629,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_endpoint_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_endpoint_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f" }, { "relation": "contains", @@ -180608,9 +180639,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -180618,9 +180649,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -180628,9 +180659,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062a\u0631_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062a\u0631_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc" }, { "relation": "contains", @@ -180638,9 +180669,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0631_response", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0631_response" }, { "relation": "contains", @@ -180648,9 +180679,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f_\u0686\u0627\u0631\u062a_\u0641\u06cc\u0644\u062a\u0631_\u0632\u0645\u0627\u0646\u06cc", - "target": "task_16_smart_dashboard_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -180658,9 +180689,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0631_response", - "target": "task_16_smart_dashboard_task_get_api_v1_admin_dashboard_charts_from_unix_to_unix", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_get_api_v1_admin_dashboard_charts_from_unix_to_unix" }, { "relation": "contains", @@ -180668,9 +180699,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0631_response", - "target": "task_16_smart_dashboard_task_get_api_v1_dashboard_clinic", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_get_api_v1_dashboard_clinic" }, { "relation": "contains", @@ -180678,9 +180709,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u062f\u0631_response", - "target": "task_16_smart_dashboard_task_get_api_v1_dashboard_doctor", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_task_get_api_v1_dashboard_doctor" }, { "relation": "contains", @@ -180688,9 +180719,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow", - "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f" }, { "relation": "contains", @@ -180698,9 +180729,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L76", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_user_flow_preset_\u0647\u0627_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0632_\u062a\u0627", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_preset_\u0647\u0627_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0632_\u062a\u0627" }, { "relation": "contains", @@ -180708,9 +180739,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0627\u0646\u062a\u062e\u0627\u0628_\u0628\u0627\u0632\u0647_\u0632\u0645\u0627\u0646\u06cc" }, { "relation": "contains", @@ -180718,9 +180749,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -180728,9 +180759,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0637\u0628" }, { "relation": "contains", @@ -180738,9 +180769,9 @@ "source_file": "docs/phase2_taskes/task-16-smart-dashboard/user_flow.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_smart_dashboard_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0647\u0648\u0634\u0645\u0646\u062f", - "target": "task_16_smart_dashboard_user_flow_\u0641\u06cc\u0644\u062a\u0631_\u0646\u0642\u0634_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_16_smart_dashboard_user_flow_\u0641\u06cc\u0644\u062a\u0631_\u0646\u0642\u0634_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -180748,9 +180779,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20", - "target": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20" }, { "relation": "contains", @@ -180758,9 +180789,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20", - "target": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627" }, { "relation": "contains", @@ -180768,9 +180799,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20", - "target": "qa_bug_report_2026_06_20_\u062a\u0648\u0635\u06cc\u0647_\u0647\u0627", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_\u062a\u0648\u0635\u06cc\u0647_\u0647\u0627" }, { "relation": "contains", @@ -180778,9 +180809,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20", - "target": "qa_bug_report_2026_06_20_\u062e\u0644\u0627\u0635\u0647", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_\u062e\u0644\u0627\u0635\u0647" }, { "relation": "contains", @@ -180788,9 +180819,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af_\u0645\u0645\u06cc\u0632\u06cc_\u06f1\u06f4\u06f0\u06f5_\u06f0\u06f3_\u06f3\u06f0_2026_06_20", - "target": "qa_bug_report_2026_06_20_\u0645\u0648\u0627\u0631\u062f\u06cc_\u06a9\u0647_\u062a\u0633\u062a_\u0634\u062f\u0646\u062f_\u0648_\u0633\u0627\u0644\u0645_\u0628\u0648\u062f\u0646\u062f_\u0634\u0648\u0627\u0647\u062f_\u0645\u062b\u0628\u062a", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_\u0645\u0648\u0627\u0631\u062f\u06cc_\u06a9\u0647_\u062a\u0633\u062a_\u0634\u062f\u0646\u062f_\u0648_\u0633\u0627\u0644\u0645_\u0628\u0648\u062f\u0646\u062f_\u0634\u0648\u0627\u0647\u062f_\u0645\u062b\u0628\u062a" }, { "relation": "contains", @@ -180798,9 +180829,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627", - "target": "qa_bug_report_2026_06_20_high_bug_3_\u0633\u0627\u062e\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0628\u0627_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0646\u0627\u0645\u0639\u062a\u0628\u0631_\u0628\u062f\u0648\u0646_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0641\u0631\u0645\u062a", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_high_bug_3_\u0633\u0627\u062e\u062a_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0628\u0627_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0646\u0627\u0645\u0639\u062a\u0628\u0631_\u0628\u062f\u0648\u0646_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0641\u0631\u0645\u062a" }, { "relation": "contains", @@ -180808,9 +180839,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627", - "target": "qa_bug_report_2026_06_20_medium_bug_1_\u06f5\u06f0\u06f0_\u0631\u0648\u06cc_\u0633\u0627\u062e\u062a_\u0628\u0644\u0627\u06af_\u0628\u0627_\u062a\u0627\u06cc\u067e_\u0627\u0634\u062a\u0628\u0627\u0647_body_\u0631\u0641\u0639_\u0634\u062f", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_medium_bug_1_\u06f5\u06f0\u06f0_\u0631\u0648\u06cc_\u0633\u0627\u062e\u062a_\u0628\u0644\u0627\u06af_\u0628\u0627_\u062a\u0627\u06cc\u067e_\u0627\u0634\u062a\u0628\u0627\u0647_body_\u0631\u0641\u0639_\u0634\u062f" }, { "relation": "contains", @@ -180818,9 +180849,9 @@ "source_file": "docs/qa/bug-report-2026-06-20.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627", - "target": "qa_bug_report_2026_06_20_medium_bug_2_\u06a9\u062f_\u0645\u0644\u06cc_\u0646\u0627\u0645\u0639\u062a\u0628\u0631_\u0628\u062f\u0648\u0646_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0630\u062e\u06cc\u0631\u0647_\u0645\u06cc_\u0634\u0648\u062f", - "confidence_score": 1.0 + "target": "qa_bug_report_2026_06_20_medium_bug_2_\u06a9\u062f_\u0645\u0644\u06cc_\u0646\u0627\u0645\u0639\u062a\u0628\u0631_\u0628\u062f\u0648\u0646_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0630\u062e\u06cc\u0631\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, { "relation": "contains", @@ -180828,9 +180859,9 @@ "source_file": "docs/security-audit.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit", - "target": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "confidence_score": 1.0 + "target": "docs_security_audit_security_audit_report_clinicpro_symfony_7" }, { "relation": "contains", @@ -180838,9 +180869,9 @@ "source_file": "docs/security-audit.md", "source_location": "L196", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_changes_applied", - "confidence_score": 1.0 + "target": "docs_security_audit_changes_applied" }, { "relation": "contains", @@ -180848,9 +180879,9 @@ "source_file": "docs/security-audit.md", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_configuration_changes", - "confidence_score": 1.0 + "target": "docs_security_audit_configuration_changes" }, { "relation": "contains", @@ -180858,9 +180889,9 @@ "source_file": "docs/security-audit.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_critical_issues_fixed", - "confidence_score": 1.0 + "target": "docs_security_audit_critical_issues_fixed" }, { "relation": "contains", @@ -180868,9 +180899,9 @@ "source_file": "docs/security-audit.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_executive_summary", - "confidence_score": 1.0 + "target": "docs_security_audit_executive_summary" }, { "relation": "contains", @@ -180878,9 +180909,9 @@ "source_file": "docs/security-audit.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_high_risk_issues_fixed", - "confidence_score": 1.0 + "target": "docs_security_audit_high_risk_issues_fixed" }, { "relation": "contains", @@ -180888,9 +180919,9 @@ "source_file": "docs/security-audit.md", "source_location": "L217", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_installed_packages", - "confidence_score": 1.0 + "target": "docs_security_audit_installed_packages" }, { "relation": "contains", @@ -180898,9 +180929,9 @@ "source_file": "docs/security-audit.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_low_risk_issues", - "confidence_score": 1.0 + "target": "docs_security_audit_low_risk_issues" }, { "relation": "contains", @@ -180908,9 +180939,9 @@ "source_file": "docs/security-audit.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_medium_risk_issues_fixed", - "confidence_score": 1.0 + "target": "docs_security_audit_medium_risk_issues_fixed" }, { "relation": "contains", @@ -180918,9 +180949,9 @@ "source_file": "docs/security-audit.md", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_remaining_recommendations", - "confidence_score": 1.0 + "target": "docs_security_audit_remaining_recommendations" }, { "relation": "contains", @@ -180928,9 +180959,9 @@ "source_file": "docs/security-audit.md", "source_location": "L303", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_security_audit_report_clinicpro_symfony_7", - "target": "docs_security_audit_security_score", - "confidence_score": 1.0 + "target": "docs_security_audit_security_score" }, { "relation": "contains", @@ -180938,9 +180969,9 @@ "source_file": "docs/security-audit.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_critical_issues_fixed", - "target": "docs_security_audit_crit_01_weak_app_secret_committed_to_version_control", - "confidence_score": 1.0 + "target": "docs_security_audit_crit_01_weak_app_secret_committed_to_version_control" }, { "relation": "contains", @@ -180948,9 +180979,9 @@ "source_file": "docs/security-audit.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_critical_issues_fixed", - "target": "docs_security_audit_crit_02_jwt_passphrase_hardcoded_in_env", - "confidence_score": 1.0 + "target": "docs_security_audit_crit_02_jwt_passphrase_hardcoded_in_env" }, { "relation": "contains", @@ -180958,9 +180989,9 @@ "source_file": "docs/security-audit.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_critical_issues_fixed", - "target": "docs_security_audit_crit_03_payment_gateway_test_credentials_committed", - "confidence_score": 1.0 + "target": "docs_security_audit_crit_03_payment_gateway_test_credentials_committed" }, { "relation": "contains", @@ -180968,9 +180999,9 @@ "source_file": "docs/security-audit.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_critical_issues_fixed", - "target": "docs_security_audit_crit_04_unhandled_exceptions_leaking_stack_traces", - "confidence_score": 1.0 + "target": "docs_security_audit_crit_04_unhandled_exceptions_leaking_stack_traces" }, { "relation": "contains", @@ -180978,9 +181009,9 @@ "source_file": "docs/security-audit.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_01_password_hasher_bcrypt_instead_of_argon2id", - "confidence_score": 1.0 + "target": "docs_security_audit_high_01_password_hasher_bcrypt_instead_of_argon2id" }, { "relation": "contains", @@ -180988,9 +181019,9 @@ "source_file": "docs/security-audit.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_02_no_rate_limiting_on_otp_login_endpoints", - "confidence_score": 1.0 + "target": "docs_security_audit_high_02_no_rate_limiting_on_otp_login_endpoints" }, { "relation": "contains", @@ -180998,9 +181029,9 @@ "source_file": "docs/security-audit.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_03_passwordauthenticator_never_triggered_login_broken_for_staff", - "confidence_score": 1.0 + "target": "docs_security_audit_high_03_passwordauthenticator_never_triggered_login_broken_for_staff" }, { "relation": "contains", @@ -181008,9 +181039,9 @@ "source_file": "docs/security-audit.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_04_payment_callback_ip_whitelist_never_enforced", - "confidence_score": 1.0 + "target": "docs_security_audit_high_04_payment_callback_ip_whitelist_never_enforced" }, { "relation": "contains", @@ -181018,9 +181049,9 @@ "source_file": "docs/security-audit.md", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_05_open_redirect_allowed_frontend_hosts_always_empty", - "confidence_score": 1.0 + "target": "docs_security_audit_high_05_open_redirect_allowed_frontend_hosts_always_empty" }, { "relation": "contains", @@ -181028,9 +181059,9 @@ "source_file": "docs/security-audit.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_06_filevalidatorservice_api_mismatch_in_blogcontroller_upload_bypass", - "confidence_score": 1.0 + "target": "docs_security_audit_high_06_filevalidatorservice_api_mismatch_in_blogcontroller_upload_bypass" }, { "relation": "contains", @@ -181038,9 +181069,9 @@ "source_file": "docs/security-audit.md", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_07_doctorcontroller_upload_skips_size_validation", - "confidence_score": 1.0 + "target": "docs_security_audit_high_07_doctorcontroller_upload_skips_size_validation" }, { "relation": "contains", @@ -181048,9 +181079,9 @@ "source_file": "docs/security-audit.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_08_unauthenticated_requests_returning_500_instead_of_401", - "confidence_score": 1.0 + "target": "docs_security_audit_high_08_unauthenticated_requests_returning_500_instead_of_401" }, { "relation": "contains", @@ -181058,9 +181089,9 @@ "source_file": "docs/security-audit.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_high_risk_issues_fixed", - "target": "docs_security_audit_high_09_sms_template_crud_open_to_any_authenticated_user_bola_idor", - "confidence_score": 1.0 + "target": "docs_security_audit_high_09_sms_template_crud_open_to_any_authenticated_user_bola_idor" }, { "relation": "contains", @@ -181068,9 +181099,9 @@ "source_file": "docs/security-audit.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_medium_risk_issues_fixed", - "target": "docs_security_audit_med_01_app_env_dev_in_committed_env", - "confidence_score": 1.0 + "target": "docs_security_audit_med_01_app_env_dev_in_committed_env" }, { "relation": "contains", @@ -181078,9 +181109,9 @@ "source_file": "docs/security-audit.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_medium_risk_issues_fixed", - "target": "docs_security_audit_med_02_static_analysis_tooling_missing", - "confidence_score": 1.0 + "target": "docs_security_audit_med_02_static_analysis_tooling_missing" }, { "relation": "contains", @@ -181088,9 +181119,9 @@ "source_file": "docs/security-audit.md", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_medium_risk_issues_fixed", - "target": "docs_security_audit_med_03_nelmioapidoc_publicly_accessible", - "confidence_score": 1.0 + "target": "docs_security_audit_med_03_nelmioapidoc_publicly_accessible" }, { "relation": "contains", @@ -181098,9 +181129,9 @@ "source_file": "docs/security-audit.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_medium_risk_issues_fixed", - "target": "docs_security_audit_med_04_session_true_for_a_stateless_api", - "confidence_score": 1.0 + "target": "docs_security_audit_med_04_session_true_for_a_stateless_api" }, { "relation": "contains", @@ -181108,9 +181139,9 @@ "source_file": "docs/security-audit.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_medium_risk_issues_fixed", - "target": "docs_security_audit_med_05_session_token_endpoint_has_no_security_purpose", - "confidence_score": 1.0 + "target": "docs_security_audit_med_05_session_token_endpoint_has_no_security_purpose" }, { "relation": "contains", @@ -181118,9 +181149,9 @@ "source_file": "docs/security-audit.md", "source_location": "L170", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_low_risk_issues", - "target": "docs_security_audit_low_01_hsts_header_missing_preload_directive", - "confidence_score": 1.0 + "target": "docs_security_audit_low_01_hsts_header_missing_preload_directive" }, { "relation": "contains", @@ -181128,9 +181159,9 @@ "source_file": "docs/security-audit.md", "source_location": "L175", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_low_risk_issues", - "target": "docs_security_audit_low_02_php_expose_php_not_disabled", - "confidence_score": 1.0 + "target": "docs_security_audit_low_02_php_expose_php_not_disabled" }, { "relation": "contains", @@ -181138,9 +181169,9 @@ "source_file": "docs/security-audit.md", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_low_risk_issues", - "target": "docs_security_audit_low_03_composer_php_constraint_too_permissive", - "confidence_score": 1.0 + "target": "docs_security_audit_low_03_composer_php_constraint_too_permissive" }, { "relation": "contains", @@ -181148,9 +181179,9 @@ "source_file": "docs/security-audit.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_low_risk_issues", - "target": "docs_security_audit_low_04_payment_amount_hardcoded", - "confidence_score": 1.0 + "target": "docs_security_audit_low_04_payment_amount_hardcoded" }, { "relation": "contains", @@ -181158,9 +181189,9 @@ "source_file": "docs/security-audit.md", "source_location": "L189", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_low_risk_issues", - "target": "docs_security_audit_low_05_database_credentials_in_env_are_insecure_defaults", - "confidence_score": 1.0 + "target": "docs_security_audit_low_05_database_credentials_in_env_are_insecure_defaults" }, { "relation": "contains", @@ -181168,9 +181199,9 @@ "source_file": "docs/security-audit.md", "source_location": "L241", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_configuration_changes", - "target": "docs_security_audit_config_packages_rate_limiter_yaml_new", - "confidence_score": 1.0 + "target": "docs_security_audit_config_packages_rate_limiter_yaml_new" }, { "relation": "contains", @@ -181178,9 +181209,9 @@ "source_file": "docs/security-audit.md", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "docs_security_audit_configuration_changes", - "target": "docs_security_audit_config_packages_security_yaml", - "confidence_score": 1.0 + "target": "docs_security_audit_config_packages_security_yaml" }, { "relation": "contains", @@ -181188,9 +181219,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme", - "target": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "confidence_score": 1.0 + "target": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony" }, { "relation": "contains", @@ -181198,9 +181229,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "target": "tasks_readme_\u062a\u0631\u062a\u06cc\u0628_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc_\u0627\u062c\u0631\u0627", - "confidence_score": 1.0 + "target": "tasks_readme_\u062a\u0631\u062a\u06cc\u0628_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc_\u0627\u062c\u0631\u0627" }, { "relation": "contains", @@ -181208,9 +181239,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "target": "tasks_readme_\u062e\u0644\u0627\u0635\u0647_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "tasks_readme_\u062e\u0644\u0627\u0635\u0647_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -181218,9 +181249,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "target": "tasks_readme_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_ddev_\u067e\u0631\u06a9\u0627\u0631\u0628\u0631\u062f", - "confidence_score": 1.0 + "target": "tasks_readme_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_ddev_\u067e\u0631\u06a9\u0627\u0631\u0628\u0631\u062f" }, { "relation": "contains", @@ -181228,9 +181259,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "target": "tasks_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u0647\u0631_\u062a\u0633\u06a9", - "confidence_score": 1.0 + "target": "tasks_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u0647\u0631_\u062a\u0633\u06a9" }, { "relation": "contains", @@ -181238,9 +181269,9 @@ "source_file": "docs/tasks/README.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "tasks_readme_\u062a\u0633\u06a9_\u0647\u0627\u06cc_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_clinicpro_\u062f\u0631_symfony", - "target": "tasks_readme_\u0644\u06cc\u0633\u062a_\u062a\u0633\u06a9_\u0647\u0627_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_\u0627\u0648\u0644\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "tasks_readme_\u0644\u06cc\u0633\u062a_\u062a\u0633\u06a9_\u0647\u0627_\u0628\u0647_\u062a\u0631\u062a\u06cc\u0628_\u0627\u0648\u0644\u0648\u06cc\u062a" }, { "relation": "contains", @@ -181248,9 +181279,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture", - "target": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -181258,9 +181289,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u062e\u0644\u06cc_\u0647\u0631_\u0645\u0627\u0698\u0648\u0644", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u062e\u0644\u06cc_\u0647\u0631_\u0645\u0627\u0698\u0648\u0644" }, { "relation": "contains", @@ -181268,9 +181299,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0648\u0634\u0647_\u0647\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0648\u0634\u0647_\u0647\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -181278,9 +181309,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_architecture_\u0641\u0631\u0645\u062a_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_\u067e\u0627\u0633\u062e_apiresponse", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0641\u0631\u0645\u062a_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_\u067e\u0627\u0633\u062e_apiresponse" }, { "relation": "contains", @@ -181288,9 +181319,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L75", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_architecture_\u0645\u0633\u0626\u0648\u0644\u06cc\u062a_\u0647\u0631_\u0644\u0627\u06cc\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0645\u0633\u0626\u0648\u0644\u06cc\u062a_\u0647\u0631_\u0644\u0627\u06cc\u0647" }, { "relation": "contains", @@ -181298,9 +181329,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u0627\u0631\u062a\u0628\u0627\u0637_\u0644\u0627\u06cc\u0647_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u0627\u0631\u062a\u0628\u0627\u0637_\u0644\u0627\u06cc\u0647_\u0647\u0627" }, { "relation": "contains", @@ -181308,9 +181339,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0641\u0631\u0645\u062a_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_\u067e\u0627\u0633\u062e_apiresponse", - "target": "task_01_project_setup_architecture_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u062e\u0637\u0627" }, { "relation": "contains", @@ -181318,9 +181349,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0641\u0631\u0645\u062a_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_\u067e\u0627\u0633\u062e_apiresponse", - "target": "task_01_project_setup_architecture_\u0645\u0648\u0641\u0642_\u0628\u0627_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0645\u0648\u0641\u0642_\u0628\u0627_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc" }, { "relation": "contains", @@ -181328,9 +181359,9 @@ "source_file": "docs/tasks/task-01-project-setup/architecture.md", "source_location": "L90", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_architecture_\u0641\u0631\u0645\u062a_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_\u067e\u0627\u0633\u062e_apiresponse", - "target": "task_01_project_setup_architecture_\u0645\u0648\u0641\u0642_\u0628\u062f\u0648\u0646_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_architecture_\u0645\u0648\u0641\u0642_\u0628\u062f\u0648\u0646_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc" }, { "relation": "contains", @@ -181338,9 +181369,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database", - "target": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -181348,9 +181379,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_redis_\u0628\u0627_ddev", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_redis_\u0628\u0627_ddev" }, { "relation": "contains", @@ -181358,9 +181389,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L56", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_timestampabletrait", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_timestampabletrait" }, { "relation": "contains", @@ -181368,9 +181399,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_migration", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_migration" }, { "relation": "contains", @@ -181378,9 +181409,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_redis", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_redis" }, { "relation": "contains", @@ -181388,9 +181419,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u06a9\u0644\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u06a9\u0644\u06cc" }, { "relation": "contains", @@ -181398,9 +181429,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_\u0645\u0648\u062a\u0648\u0631_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u0645\u0648\u062a\u0648\u0631_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647" }, { "relation": "contains", @@ -181408,9 +181439,9 @@ "source_file": "docs/tasks/task-01-project-setup/database.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_database_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_ddev_\u0628\u0631\u0627\u06cc_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_database_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_ddev_\u0628\u0631\u0627\u06cc_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647" }, { "relation": "contains", @@ -181418,9 +181449,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes", - "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647" }, { "relation": "contains", @@ -181428,9 +181459,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_audit_log_\u062c\u062f\u0648\u0644_security_logs", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_audit_log_\u062c\u062f\u0648\u0644_security_logs" }, { "relation": "contains", @@ -181438,9 +181469,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L184", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_security_headers_eventsubscriber", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_security_headers_eventsubscriber" }, { "relation": "contains", @@ -181448,9 +181479,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_swagger_ui_\u0641\u0642\u0637_\u062f\u0631_\u0645\u062d\u06cc\u0637_dev", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_swagger_ui_\u0641\u0642\u0637_\u062f\u0631_\u0645\u062d\u06cc\u0637_dev" }, { "relation": "contains", @@ -181458,9 +181489,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_access_token_\u062f\u0631_\u0647\u062f\u0631_refresh_token_\u062f\u0631_body", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_access_token_\u062f\u0631_\u0647\u062f\u0631_refresh_token_\u062f\u0631_body" }, { "relation": "contains", @@ -181468,9 +181499,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u062a\u0641\u0627\u0648\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc_drupal_vs_symfony", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u062a\u0641\u0627\u0648\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc_drupal_vs_symfony" }, { "relation": "contains", @@ -181478,9 +181509,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L294", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_ddev", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_ddev" }, { "relation": "contains", @@ -181488,9 +181519,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L307", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u0627\u0645\u0646\u06cc\u062a\u06cc_production", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u0627\u0645\u0646\u06cc\u062a\u06cc_production" }, { "relation": "contains", @@ -181498,9 +181529,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_cors_\u0645\u062d\u062f\u0648\u062f_\u0646\u0647_\u0628\u0627\u0632", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_cors_\u0645\u062d\u062f\u0648\u062f_\u0646\u0647_\u0628\u0627\u0632" }, { "relation": "contains", @@ -181508,9 +181539,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", - "target": "task_01_project_setup_implementation_notes_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_security_security_yaml", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_security_security_yaml" }, { "relation": "contains", @@ -181518,9 +181549,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u062a\u0641\u0627\u0648\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc_drupal_vs_symfony", - "target": "task_01_project_setup_implementation_notes_csrf_token", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_csrf_token" }, { "relation": "contains", @@ -181528,9 +181559,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u062a\u0641\u0627\u0648\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc_drupal_vs_symfony", - "target": "task_01_project_setup_implementation_notes_uuid", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_uuid" }, { "relation": "contains", @@ -181538,9 +181569,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_access_token_\u062f\u0631_\u0647\u062f\u0631_refresh_token_\u062f\u0631_body", - "target": "task_01_project_setup_implementation_notes_access_token_\u0641\u0642\u0637_\u062f\u0631_authorization_header", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_access_token_\u0641\u0642\u0637_\u062f\u0631_authorization_header" }, { "relation": "contains", @@ -181548,9 +181579,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_access_token_\u062f\u0631_\u0647\u062f\u0631_refresh_token_\u062f\u0631_body", - "target": "task_01_project_setup_implementation_notes_refresh_token_\u0641\u0642\u0637_\u062f\u0631_body_\u0628\u0631\u0627\u06cc_\u06cc\u06a9_endpoint_\u062e\u0627\u0635", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_refresh_token_\u0641\u0642\u0637_\u062f\u0631_body_\u0628\u0631\u0627\u06cc_\u06cc\u06a9_endpoint_\u062e\u0627\u0635" }, { "relation": "contains", @@ -181558,9 +181589,9 @@ "source_file": "docs/tasks/task-01-project-setup/implementation_notes.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_implementation_notes_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_access_token_\u062f\u0631_\u0647\u062f\u0631_refresh_token_\u062f\u0631_body", - "target": "task_01_project_setup_implementation_notes_\u06af\u0631\u062f\u0634_\u06a9\u0627\u0645\u0644_\u062a\u0648\u06a9\u0646_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_implementation_notes_\u06af\u0631\u062f\u0634_\u06a9\u0627\u0645\u0644_\u062a\u0648\u06a9\u0646_\u0647\u0627" }, { "relation": "contains", @@ -181568,9 +181599,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task", - "target": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a" }, { "relation": "contains", @@ -181578,9 +181609,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L378", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_dto_pattern", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_dto_pattern" }, { "relation": "contains", @@ -181588,9 +181619,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -181598,9 +181629,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L276", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -181608,9 +181639,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_file_upload_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0634\u062a\u0631\u06a9_\u0648_\u0627\u0645\u0646\u06cc\u062a\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_file_upload_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0634\u062a\u0631\u06a9_\u0648_\u0627\u0645\u0646\u06cc\u062a\u06cc" }, { "relation": "contains", @@ -181618,9 +181649,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_health_check_get_health", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_health_check_get_health" }, { "relation": "contains", @@ -181628,9 +181659,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_swagger_\u0646\u062d\u0648\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_controller", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_swagger_\u0646\u062d\u0648\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_controller" }, { "relation": "contains", @@ -181638,9 +181669,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -181648,9 +181679,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -181658,9 +181689,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -181668,9 +181699,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L181", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0648\u0634\u0647_domain_driven_\u0627\u0644\u0632\u0627\u0645\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0648\u0634\u0647_domain_driven_\u0627\u0644\u0632\u0627\u0645\u06cc" }, { "relation": "contains", @@ -181678,9 +181709,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L533", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_env", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_env" }, { "relation": "contains", @@ -181688,9 +181719,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev" }, { "relation": "contains", @@ -181698,9 +181729,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u062a\u0633\u06a9_\u06f0\u06f1_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0648_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", - "target": "task_01_project_setup_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -181708,9 +181739,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0698\u0647_symfony_\u0642\u0628\u0644_\u0627\u0632_ddev", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f1_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0698\u0647_symfony_\u0642\u0628\u0644_\u0627\u0632_ddev" }, { "relation": "contains", @@ -181718,9 +181749,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f2_\u0646\u0635\u0628_\u067e\u06a9\u06cc\u062c_\u0647\u0627_\u0647\u0645\u0647_\u062f\u0631_\u06cc\u06a9_\u062f\u0633\u062a\u0648\u0631", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f2_\u0646\u0635\u0628_\u067e\u06a9\u06cc\u062c_\u0647\u0627_\u0647\u0645\u0647_\u062f\u0631_\u06cc\u06a9_\u062f\u0633\u062a\u0648\u0631" }, { "relation": "contains", @@ -181728,9 +181759,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f3_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_redis_\u0628\u0627_ddev_addon_\u0631\u0633\u0645\u06cc", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f3_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_redis_\u0628\u0627_ddev_addon_\u0631\u0633\u0645\u06cc" }, { "relation": "contains", @@ -181738,9 +181769,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L89", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f4_\u062a\u0648\u0644\u06cc\u062f_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_jwt", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f4_\u062a\u0648\u0644\u06cc\u062f_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_jwt" }, { "relation": "contains", @@ -181748,9 +181779,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f5_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_lexikjwt", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f5_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_lexikjwt" }, { "relation": "contains", @@ -181758,9 +181789,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f6_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_symfony_messenger_queue", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f6_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_symfony_messenger_queue" }, { "relation": "contains", @@ -181768,9 +181799,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f7_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_swagger", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f7_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_swagger" }, { "relation": "contains", @@ -181778,9 +181809,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L161", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_\u0645\u0631\u0627\u062d\u0644_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_ddev", - "target": "task_01_project_setup_task_\u06f8_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_structured_logging", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u06f8_\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc_structured_logging" }, { "relation": "contains", @@ -181788,9 +181819,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f", - "target": "task_01_project_setup_task_basecontroller_src_shared_controller_basecontroller_php", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_basecontroller_src_shared_controller_basecontroller_php" }, { "relation": "contains", @@ -181798,9 +181829,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L306", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f", - "target": "task_01_project_setup_task_error_codes_src_shared_constant_errorcodes_php", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_error_codes_src_shared_constant_errorcodes_php" }, { "relation": "contains", @@ -181808,9 +181839,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f", - "target": "task_01_project_setup_task_\u0641\u0631\u0645\u062a_\u062e\u0637\u0627", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0641\u0631\u0645\u062a_\u062e\u0637\u0627" }, { "relation": "contains", @@ -181818,9 +181849,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_error_response_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f", - "target": "task_01_project_setup_task_\u0641\u0631\u0645\u062a_\u0645\u0648\u0641\u0642", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0641\u0631\u0645\u062a_\u0645\u0648\u0641\u0642" }, { "relation": "contains", @@ -181828,9 +181859,9 @@ "source_file": "docs/tasks/task-01-project-setup/task.md", "source_location": "L454", "weight": 1.0, + "confidence_score": 1.0, "source": "task_01_project_setup_task_file_upload_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627\u06cc_\u0645\u0634\u062a\u0631\u06a9_\u0648_\u0627\u0645\u0646\u06cc\u062a\u06cc", - "target": "task_01_project_setup_task_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0641\u0627\u06cc\u0644_\u0628\u0631\u0631\u0633\u06cc_\u0645\u062d\u062a\u0648\u0627_\u0646\u0647_header", - "confidence_score": 1.0 + "target": "task_01_project_setup_task_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0641\u0627\u06cc\u0644_\u0628\u0631\u0631\u0633\u06cc_\u0645\u062d\u062a\u0648\u0627_\u0646\u0647_header" }, { "relation": "contains", @@ -181838,9 +181869,9 @@ "source_file": "docs/tasks/task-02-authentication/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_architecture", - "target": "task_02_authentication_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -181848,9 +181879,9 @@ "source_file": "docs/tasks/task-02-authentication/architecture.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_architecture_entity_user", - "confidence_score": 1.0 + "target": "task_02_authentication_architecture_entity_user" }, { "relation": "contains", @@ -181858,9 +181889,9 @@ "source_file": "docs/tasks/task-02-authentication/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -181868,9 +181899,9 @@ "source_file": "docs/tasks/task-02-authentication/architecture.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -181878,9 +181909,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database", - "target": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -181888,9 +181919,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -181898,9 +181929,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u062c\u062f\u0648\u0644_users", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u062c\u062f\u0648\u0644_users" }, { "relation": "contains", @@ -181908,9 +181939,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u062c\u0631\u06cc\u0627\u0646_otp_mobilegrant", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u062c\u0631\u06cc\u0627\u0646_otp_mobilegrant" }, { "relation": "contains", @@ -181918,9 +181949,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_otp_\u062f\u0631_redis_\u0646\u0647_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_otp_\u062f\u0631_redis_\u0646\u0647_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647" }, { "relation": "contains", @@ -181928,9 +181959,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u0631\u0648\u0627\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u0631_\u062c\u062f\u0627\u0648\u0644", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u0631\u0648\u0627\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u0631_\u062c\u062f\u0627\u0648\u0644" }, { "relation": "contains", @@ -181938,9 +181969,9 @@ "source_file": "docs/tasks/task-02-authentication/database.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_database_\u0646\u0645\u0648\u0646\u0647_\u067e\u0627\u0633\u062e_get_oauth_userinfo_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_02_authentication_database_\u0646\u0645\u0648\u0646\u0647_\u067e\u0627\u0633\u062e_get_oauth_userinfo_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal" }, { "relation": "contains", @@ -181948,9 +181979,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes", - "target": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -181958,9 +181989,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_flood_control_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_flood_control_\u0627\u0632_drupal" }, { "relation": "contains", @@ -181968,9 +181999,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_mobilegrant_\u062f\u0631_symfony", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_mobilegrant_\u062f\u0631_symfony" }, { "relation": "contains", @@ -181978,9 +182009,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_rate_limiting_\u0645\u0642\u0627\u062f\u06cc\u0631_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_rate_limiting_\u0645\u0642\u0627\u062f\u06cc\u0631_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -181988,9 +182019,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_sms_providers", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_sms_providers" }, { "relation": "contains", @@ -181998,9 +182029,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_ttl_\u06a9\u062f_otp_1200_\u062b\u0627\u0646\u06cc\u0647_20_\u062f\u0642\u06cc\u0642\u0647", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_ttl_\u06a9\u062f_otp_1200_\u062b\u0627\u0646\u06cc\u0647_20_\u062f\u0642\u06cc\u0642\u0647" }, { "relation": "contains", @@ -182008,9 +182039,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_\u0633\u0631\u0648\u0631_drupal", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_\u0633\u0631\u0648\u0631_drupal" }, { "relation": "contains", @@ -182018,9 +182049,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u06a9\u0644\u0627\u06cc\u0646\u062a_get_session_token", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u06a9\u0644\u0627\u06cc\u0646\u062a_get_session_token" }, { "relation": "contains", @@ -182028,9 +182059,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L109", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -182038,9 +182069,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_\u062a\u0641\u0627\u0648\u062a_\u0628\u0627_\u0637\u0631\u0627\u062d\u06cc_\u0627\u0648\u0644\u06cc\u0647", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_\u062a\u0641\u0627\u0648\u062a_\u0628\u0627_\u0637\u0631\u0627\u062d\u06cc_\u0627\u0648\u0644\u06cc\u0647" }, { "relation": "contains", @@ -182048,9 +182079,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L155", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_implementation_notes_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u0645\u062c\u0627\u0632_\u0628\u0631\u0627\u06cc_login_\u0628\u0627_password", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u0645\u062c\u0627\u0632_\u0628\u0631\u0627\u06cc_login_\u0628\u0627_password" }, { "relation": "contains", @@ -182058,9 +182089,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646_\u062a\u0641\u0627\u0648\u062a_\u0628\u0627_\u0637\u0631\u0627\u062d\u06cc_\u0627\u0648\u0644\u06cc\u0647", - "target": "task_02_authentication_implementation_notes_\u062c\u0631\u06cc\u0627\u0646_otp_\u0628\u0627_uuid_\u0646\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u062c\u0631\u06cc\u0627\u0646_otp_\u0628\u0627_uuid_\u0646\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644" }, { "relation": "contains", @@ -182068,9 +182099,9 @@ "source_file": "docs/tasks/task-02-authentication/implementation_notes.md", "source_location": "L146", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_\u0633\u0631\u0648\u0631_drupal", - "target": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_userinfo", - "confidence_score": 1.0 + "target": "task_02_authentication_implementation_notes_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645_userinfo" }, { "relation": "contains", @@ -182078,9 +182109,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task", - "target": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -182088,9 +182119,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L12", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -182098,9 +182129,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L205", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_get_oauth_userinfo", - "confidence_score": 1.0 + "target": "task_02_authentication_task_get_oauth_userinfo" }, { "relation": "contains", @@ -182108,9 +182139,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L194", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_get_session_token_csrf", - "confidence_score": 1.0 + "target": "task_02_authentication_task_get_session_token_csrf" }, { "relation": "contains", @@ -182118,9 +182149,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_rate_limiting", - "confidence_score": 1.0 + "target": "task_02_authentication_task_rate_limiting" }, { "relation": "contains", @@ -182128,9 +182159,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L257", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_redis_key_schema", - "confidence_score": 1.0 + "target": "task_02_authentication_task_redis_key_schema" }, { "relation": "contains", @@ -182138,9 +182169,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_refresh_token", - "confidence_score": 1.0 + "target": "task_02_authentication_task_refresh_token" }, { "relation": "contains", @@ -182148,9 +182179,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L244", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_sms_providers", - "confidence_score": 1.0 + "target": "task_02_authentication_task_sms_providers" }, { "relation": "contains", @@ -182158,9 +182189,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_\u062f\u0631_symfony_\u06a9\u062c\u0627_\u062a\u0648\u06a9\u0646_\u0631\u0627_\u0627\u0631\u0633\u0627\u0644_\u06a9\u0646\u06cc\u0645", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_\u062f\u0631_symfony_\u06a9\u062c\u0627_\u062a\u0648\u06a9\u0646_\u0631\u0627_\u0627\u0631\u0633\u0627\u0644_\u06a9\u0646\u06cc\u0645" }, { "relation": "contains", @@ -182168,9 +182199,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -182178,9 +182209,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_otp", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_otp" }, { "relation": "contains", @@ -182188,9 +182219,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -182198,9 +182229,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L270", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0627_username_password_\u0628\u0631\u0627\u06cc_\u062f\u06a9\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0627_username_password_\u0628\u0631\u0627\u06cc_\u062f\u06a9\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -182208,9 +182239,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -182218,9 +182249,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_otp", - "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f1_post_api_v1_user_send_code", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f1_post_api_v1_user_send_code" }, { "relation": "contains", @@ -182228,9 +182259,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_otp", - "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f2_post_api_v1_user_verify_code", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f2_post_api_v1_user_verify_code" }, { "relation": "contains", @@ -182238,9 +182269,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_otp", - "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f3_post_oauth_token_mobilegrant", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u0645\u0631\u062d\u0644\u0647_\u06f3_post_oauth_token_mobilegrant" }, { "relation": "contains", @@ -182248,9 +182279,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L176", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_refresh_token", - "target": "task_02_authentication_task_post_oauth_logout", - "confidence_score": 1.0 + "target": "task_02_authentication_task_post_oauth_logout" }, { "relation": "contains", @@ -182258,9 +182289,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L141", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_refresh_token", - "target": "task_02_authentication_task_post_oauth_token_refresh", - "confidence_score": 1.0 + "target": "task_02_authentication_task_post_oauth_token_refresh" }, { "relation": "contains", @@ -182268,9 +182299,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0627_username_password_\u0628\u0631\u0627\u06cc_\u062f\u06a9\u062a\u0631_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0645\u0646\u0634\u06cc", - "target": "task_02_authentication_task_post_api_v1_user_login", - "confidence_score": 1.0 + "target": "task_02_authentication_task_post_api_v1_user_login" }, { "relation": "contains", @@ -182278,9 +182309,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L426", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_\u062f\u0631_symfony_\u06a9\u062c\u0627_\u062a\u0648\u06a9\u0646_\u0631\u0627_\u0627\u0631\u0633\u0627\u0644_\u06a9\u0646\u06cc\u0645", - "target": "task_02_authentication_task_access_token_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631_\u0647\u062f\u0631_authorization", - "confidence_score": 1.0 + "target": "task_02_authentication_task_access_token_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631_\u0647\u062f\u0631_authorization" }, { "relation": "contains", @@ -182288,9 +182319,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L451", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_\u062f\u0631_symfony_\u06a9\u062c\u0627_\u062a\u0648\u06a9\u0646_\u0631\u0627_\u0627\u0631\u0633\u0627\u0644_\u06a9\u0646\u06cc\u0645", - "target": "task_02_authentication_task_refresh_token_\u0641\u0642\u0637_\u062f\u0631_body_\u0628\u0631\u0627\u06cc_endpoint_\u0645\u062e\u0635\u0648\u0635", - "confidence_score": 1.0 + "target": "task_02_authentication_task_refresh_token_\u0641\u0642\u0637_\u062f\u0631_body_\u0628\u0631\u0627\u06cc_endpoint_\u0645\u062e\u0635\u0648\u0635" }, { "relation": "contains", @@ -182298,9 +182329,9 @@ "source_file": "docs/tasks/task-02-authentication/task.md", "source_location": "L466", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_task_\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f_jwt_\u062f\u0631_symfony_\u06a9\u062c\u0627_\u062a\u0648\u06a9\u0646_\u0631\u0627_\u0627\u0631\u0633\u0627\u0644_\u06a9\u0646\u06cc\u0645", - "target": "task_02_authentication_task_\u062e\u0644\u0627\u0635\u0647_\u06af\u0631\u062f\u0634_\u062a\u0648\u06a9\u0646_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_02_authentication_task_\u062e\u0644\u0627\u0635\u0647_\u06af\u0631\u062f\u0634_\u062a\u0648\u06a9\u0646_\u0647\u0627" }, { "relation": "contains", @@ -182308,9 +182339,9 @@ "source_file": "docs/tasks/task-02-authentication/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_user_flow", - "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "confidence_score": 1.0 + "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a" }, { "relation": "contains", @@ -182318,9 +182349,9 @@ "source_file": "docs/tasks/task-02-authentication/user_flow.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0645\u062f\u06cc\u062f_token", - "confidence_score": 1.0 + "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0645\u062f\u06cc\u062f_token" }, { "relation": "contains", @@ -182328,9 +182359,9 @@ "source_file": "docs/tasks/task-02-authentication/user_flow.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -182338,9 +182369,9 @@ "source_file": "docs/tasks/task-02-authentication/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", - "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0645\u0644_\u0648\u0631\u0648\u062f_\u0628\u0627_otp_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_02_authentication_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0645\u0644_\u0648\u0631\u0648\u062f_\u0628\u0627_otp_\u062c\u0631\u06cc\u0627\u0646_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal" }, { "relation": "contains", @@ -182348,9 +182379,9 @@ "source_file": "docs/tasks/task-03-user-profile/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_architecture", - "target": "task_03_user_profile_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "task_03_user_profile_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -182358,9 +182389,9 @@ "source_file": "docs/tasks/task-03-user-profile/architecture.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_architecture_entity_userprofile", - "confidence_score": 1.0 + "target": "task_03_user_profile_architecture_entity_userprofile" }, { "relation": "contains", @@ -182368,9 +182399,9 @@ "source_file": "docs/tasks/task-03-user-profile/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_03_user_profile_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -182378,9 +182409,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database", - "target": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -182388,9 +182419,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -182398,9 +182429,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u062c\u062f\u0648\u0644_profiles", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u062c\u062f\u0648\u0644_profiles" }, { "relation": "contains", @@ -182408,9 +182439,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0631\u0627\u0628\u0637\u0647", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0631\u0627\u0628\u0637\u0647" }, { "relation": "contains", @@ -182418,9 +182449,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0633\u0627\u062e\u062a\u0627\u0631_field_other_json_\u0627\u0632_manual_\u0648_\u0646\u0645\u0648\u0646\u0647_request_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0633\u0627\u062e\u062a\u0627\u0631_field_other_json_\u0627\u0632_manual_\u0648_\u0646\u0645\u0648\u0646\u0647_request_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -182428,9 +182459,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_blood_type_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_blood_type_\u0627\u0632_config" }, { "relation": "contains", @@ -182438,9 +182469,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_education_\u0627\u0632_manual", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_education_\u0627\u0632_manual" }, { "relation": "contains", @@ -182448,9 +182479,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_gender_profile_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_gender_profile_\u0627\u0632_config" }, { "relation": "contains", @@ -182458,9 +182489,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -182468,9 +182499,9 @@ "source_file": "docs/tasks/task-03-user-profile/database.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_03_user_profile_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -182478,9 +182509,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes", - "target": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -182488,9 +182519,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_partial_update_patch", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_partial_update_patch" }, { "relation": "contains", @@ -182498,9 +182529,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_blood_type", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_blood_type" }, { "relation": "contains", @@ -182508,9 +182539,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_education", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_education" }, { "relation": "contains", @@ -182518,9 +182549,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_gender", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_gender" }, { "relation": "contains", @@ -182528,9 +182559,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u062c\u0631\u06cc\u0627\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u062c\u0631\u06cc\u0627\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644" }, { "relation": "contains", @@ -182538,9 +182569,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L51", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -182548,9 +182579,9 @@ "source_file": "docs/tasks/task-03-user-profile/implementation_notes.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_implementation_notes_\u0646\u06a9\u062a\u0647_uuid_\u062f\u0631_url", - "confidence_score": 1.0 + "target": "task_03_user_profile_implementation_notes_\u0646\u06a9\u062a\u0647_uuid_\u062f\u0631_url" }, { "relation": "contains", @@ -182558,9 +182589,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task", - "target": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631" }, { "relation": "contains", @@ -182568,9 +182599,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -182578,9 +182609,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -182588,9 +182619,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -182598,9 +182629,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -182608,9 +182639,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -182618,9 +182649,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u062a\u0633\u06a9_\u06f0\u06f3_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631", - "target": "task_03_user_profile_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -182628,9 +182659,9 @@ "source_file": "docs/tasks/task-03-user-profile/task.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_03_user_profile_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_03_user_profile_task_post_api_v1_user_profile", - "confidence_score": 1.0 + "target": "task_03_user_profile_task_post_api_v1_user_profile" }, { "relation": "contains", @@ -182638,9 +182669,9 @@ "source_file": "docs/tasks/task-04-blog/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_architecture", - "target": "task_04_blog_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "confidence_score": 1.0 + "target": "task_04_blog_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af" }, { "relation": "contains", @@ -182648,9 +182679,9 @@ "source_file": "docs/tasks/task-04-blog/architecture.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_architecture_entity_blog", - "confidence_score": 1.0 + "target": "task_04_blog_architecture_entity_blog" }, { "relation": "contains", @@ -182658,9 +182689,9 @@ "source_file": "docs/tasks/task-04-blog/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_04_blog_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -182668,9 +182699,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database", - "target": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af" }, { "relation": "contains", @@ -182678,9 +182709,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -182688,9 +182719,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u062c\u062f\u0648\u0644_blog_tags_manytomany", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u062c\u062f\u0648\u0644_blog_tags_manytomany" }, { "relation": "contains", @@ -182698,9 +182729,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u062c\u062f\u0648\u0644_blogs", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u062c\u062f\u0648\u0644_blogs" }, { "relation": "contains", @@ -182708,9 +182739,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -182718,9 +182749,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -182728,9 +182759,9 @@ "source_file": "docs/tasks/task-04-blog/database.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_04_blog_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -182738,9 +182769,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes", - "target": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af" }, { "relation": "contains", @@ -182748,9 +182779,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_pagination", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_pagination" }, { "relation": "contains", @@ -182758,9 +182789,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u0628\u0644\u0627\u06af_endpoint_99", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u0628\u0644\u0627\u06af_endpoint_99" }, { "relation": "contains", @@ -182768,9 +182799,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0628\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0628\u0631\u062a\u0631_top_blogs", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0628\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0628\u0631\u062a\u0631_top_blogs" }, { "relation": "contains", @@ -182778,9 +182809,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc" }, { "relation": "contains", @@ -182788,9 +182819,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u062a\u0648\u0644\u06cc\u062f_slug", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u062a\u0648\u0644\u06cc\u062f_slug" }, { "relation": "contains", @@ -182798,9 +182829,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_request_\u0627\u06cc\u062c\u0627\u062f_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0644\u0627\u06af", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_request_\u0627\u06cc\u062c\u0627\u062f_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0644\u0627\u06af" }, { "relation": "contains", @@ -182808,9 +182839,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_\u0648\u0627\u0642\u0639\u06cc_response_\u0628\u0644\u0627\u06af_\u0627\u0632_\u0633\u0631\u0648\u0631_drupal_endpoint_93", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_\u0648\u0627\u0642\u0639\u06cc_response_\u0628\u0644\u0627\u06af_\u0627\u0632_\u0633\u0631\u0648\u0631_drupal_endpoint_93" }, { "relation": "contains", @@ -182818,9 +182849,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0644\u06cc\u0633\u062a_\u0628\u0644\u0627\u06af_\u0647\u0627_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0644\u06cc\u0633\u062a_\u0628\u0644\u0627\u06af_\u0647\u0627_\u0628\u0627_\u0641\u06cc\u0644\u062a\u0631" }, { "relation": "contains", @@ -182828,9 +182859,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -182838,9 +182869,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_\u0646\u06af\u0627\u0634\u062a_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_request_response_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_\u0646\u06af\u0627\u0634\u062a_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_request_response_\u0645\u0647\u0645" }, { "relation": "contains", @@ -182848,9 +182879,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L77", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_request_\u0627\u06cc\u062c\u0627\u062f_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_patch_api_v1_blog_uuid", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_patch_api_v1_blog_uuid" }, { "relation": "contains", @@ -182858,9 +182889,9 @@ "source_file": "docs/tasks/task-04-blog/implementation_notes.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_implementation_notes_\u0641\u0631\u0645\u062a_request_\u0627\u06cc\u062c\u0627\u062f_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_implementation_notes_post_api_v1_blog", - "confidence_score": 1.0 + "target": "task_04_blog_implementation_notes_post_api_v1_blog" }, { "relation": "contains", @@ -182868,9 +182899,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task", - "target": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af" }, { "relation": "contains", @@ -182878,9 +182909,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_04_blog_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -182888,9 +182919,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -182898,9 +182929,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u062e\u0631\u0648\u062c\u06cc_\u0647\u0627\u06cc_\u0645\u0648\u0631\u062f_\u0627\u0646\u062a\u0638\u0627\u0631" }, { "relation": "contains", @@ -182908,9 +182939,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -182918,9 +182949,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_\u0646\u0645\u0648\u0646\u0647_request_response", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u0646\u0645\u0648\u0646\u0647_request_response" }, { "relation": "contains", @@ -182928,9 +182959,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u062a\u0633\u06a9_\u06f0\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0628\u0644\u0627\u06af", - "target": "task_04_blog_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_04_blog_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -182938,9 +182969,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u0646\u0645\u0648\u0646\u0647_request_response", - "target": "task_04_blog_task_get_api_v1_blogs", - "confidence_score": 1.0 + "target": "task_04_blog_task_get_api_v1_blogs" }, { "relation": "contains", @@ -182948,9 +182979,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u0646\u0645\u0648\u0646\u0647_request_response", - "target": "task_04_blog_task_get_api_v1_blogs_top", - "confidence_score": 1.0 + "target": "task_04_blog_task_get_api_v1_blogs_top" }, { "relation": "contains", @@ -182958,9 +182989,9 @@ "source_file": "docs/tasks/task-04-blog/task.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_04_blog_task_\u0646\u0645\u0648\u0646\u0647_request_response", - "target": "task_04_blog_task_post_api_v1_blog", - "confidence_score": 1.0 + "target": "task_04_blog_task_post_api_v1_blog" }, { "relation": "contains", @@ -182968,9 +182999,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture", - "target": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -182978,9 +183009,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_architecture_entity_doctor_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_drupal", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_entity_doctor_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_drupal" }, { "relation": "contains", @@ -182988,9 +183019,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_architecture_entity_doctoraddress_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_drupal", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_entity_doctoraddress_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_drupal" }, { "relation": "contains", @@ -182998,9 +183029,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L143", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_architecture_response_\u06a9\u0627\u0645\u0644_\u062f\u06a9\u062a\u0631_finalizedata", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_response_\u06a9\u0627\u0645\u0644_\u062f\u06a9\u062a\u0631_finalizedata" }, { "relation": "contains", @@ -183008,9 +183039,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -183018,9 +183049,9 @@ "source_file": "docs/tasks/task-05-doctor/architecture.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_architecture_\u0645\u0646\u0637\u0642_create_\u062f\u06a9\u062a\u0631_\u0627\u0632_doctorservice_php", - "confidence_score": 1.0 + "target": "task_05_doctor_architecture_\u0645\u0646\u0637\u0642_create_\u062f\u06a9\u062a\u0631_\u0627\u0632_doctorservice_php" }, { "relation": "contains", @@ -183028,9 +183059,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database", - "target": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -183038,9 +183069,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -183048,9 +183079,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L84", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_clinics", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_clinics" }, { "relation": "contains", @@ -183058,9 +183089,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_addresses", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_addresses" }, { "relation": "contains", @@ -183068,9 +183099,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_cities_manytomany_pivot", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_cities_manytomany_pivot" }, { "relation": "contains", @@ -183078,9 +183109,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L112", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_secretaries", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_secretaries" }, { "relation": "contains", @@ -183088,9 +183119,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_services_manytomany_pivot", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_services_manytomany_pivot" }, { "relation": "contains", @@ -183098,9 +183129,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_specialties_manytomany_pivot", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_specialties_manytomany_pivot" }, { "relation": "contains", @@ -183108,9 +183139,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_states_manytomany_pivot", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctor_states_manytomany_pivot" }, { "relation": "contains", @@ -183118,9 +183149,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctors", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u062c\u062f\u0648\u0644_doctors" }, { "relation": "contains", @@ -183128,9 +183159,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u0631\u0648\u0627\u0628\u0637_\u06a9\u0627\u0645\u0644_clinic_pro_entity", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u0631\u0648\u0627\u0628\u0637_\u06a9\u0627\u0645\u0644_clinic_pro_entity" }, { "relation": "contains", @@ -183138,9 +183169,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_degree_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_degree_\u0627\u0632_config" }, { "relation": "contains", @@ -183148,9 +183179,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_gender_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u0645\u0642\u0627\u062f\u06cc\u0631_field_gender_\u0627\u0632_config" }, { "relation": "contains", @@ -183158,9 +183189,9 @@ "source_file": "docs/tasks/task-05-doctor/database.md", "source_location": "L139", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_clinic_pro_table", - "confidence_score": 1.0 + "target": "task_05_doctor_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_clinic_pro_table" }, { "relation": "contains", @@ -183168,9 +183199,9 @@ "source_file": "docs/tasks/task-05-doctor/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_implementation_notes", - "target": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -183178,9 +183209,9 @@ "source_file": "docs/tasks/task-05-doctor/implementation_notes.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_implementation_notes_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628", - "confidence_score": 1.0 + "target": "task_05_doctor_implementation_notes_\u0622\u062f\u0631\u0633_\u0645\u0637\u0628" }, { "relation": "contains", @@ -183188,9 +183219,9 @@ "source_file": "docs/tasks/task-05-doctor/implementation_notes.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_implementation_notes_\u0622\u067e\u062f\u06cc\u062a_\u0645\u06cc\u0627\u0646\u06af\u06cc\u0646_\u0627\u0645\u062a\u06cc\u0627\u0632", - "confidence_score": 1.0 + "target": "task_05_doctor_implementation_notes_\u0622\u067e\u062f\u06cc\u062a_\u0645\u06cc\u0627\u0646\u06af\u06cc\u0646_\u0627\u0645\u062a\u06cc\u0627\u0632" }, { "relation": "contains", @@ -183198,9 +183229,9 @@ "source_file": "docs/tasks/task-05-doctor/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_implementation_notes_\u0641\u06cc\u0644\u062a\u0631_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_implementation_notes_\u0641\u06cc\u0644\u062a\u0631_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627" }, { "relation": "contains", @@ -183208,9 +183239,9 @@ "source_file": "docs/tasks/task-05-doctor/implementation_notes.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -183218,9 +183249,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task", - "target": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -183228,9 +183259,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_05_doctor_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal" }, { "relation": "contains", @@ -183238,9 +183269,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L142", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_patch_api_v1_doctor_uuid_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0642\u0627\u0628\u0644_\u0648\u06cc\u0631\u0627\u06cc\u0634", - "confidence_score": 1.0 + "target": "task_05_doctor_task_patch_api_v1_doctor_uuid_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0642\u0627\u0628\u0644_\u0648\u06cc\u0631\u0627\u06cc\u0634" }, { "relation": "contains", @@ -183248,9 +183279,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u062f\u06a9\u062a\u0631_post_file_upload_clinic_pro_doctor_field_image", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u062f\u06a9\u062a\u0631_post_file_upload_clinic_pro_doctor_field_image" }, { "relation": "contains", @@ -183258,9 +183289,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -183268,9 +183299,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -183278,9 +183309,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L98", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0641\u06cc\u0644\u062a\u0631\u0647\u0627\u06cc_get_api_v1_doctors", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0641\u06cc\u0644\u062a\u0631\u0647\u0627\u06cc_get_api_v1_doctors" }, { "relation": "contains", @@ -183288,9 +183319,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_response_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_response_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627" }, { "relation": "contains", @@ -183298,9 +183329,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_clinic_pro_doctor_address_id", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_clinic_pro_doctor_address_id" }, { "relation": "contains", @@ -183308,9 +183339,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_doctor_uuid", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_doctor_uuid" }, { "relation": "contains", @@ -183318,9 +183349,9 @@ "source_file": "docs/tasks/task-05-doctor/task.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_05_doctor_task_\u062a\u0633\u06a9_\u06f0\u06f5_\u0645\u0627\u0698\u0648\u0644_\u062f\u06a9\u062a\u0631", - "target": "task_05_doctor_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_05_doctor_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -183328,9 +183359,9 @@ "source_file": "docs/tasks/task-06-clinic/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_architecture", - "target": "task_06_clinic_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183338,9 +183369,9 @@ "source_file": "docs/tasks/task-06-clinic/architecture.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_architecture_entity_clinic", - "confidence_score": 1.0 + "target": "task_06_clinic_architecture_entity_clinic" }, { "relation": "contains", @@ -183348,9 +183379,9 @@ "source_file": "docs/tasks/task-06-clinic/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_06_clinic_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -183358,9 +183389,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database", - "target": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183368,9 +183399,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -183378,9 +183409,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_doctors_manytomany", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_doctors_manytomany" }, { "relation": "contains", @@ -183388,9 +183419,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_images_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0627\u0636\u0627\u0641\u06cc", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_images_\u062a\u0635\u0627\u0648\u06cc\u0631_\u0627\u0636\u0627\u0641\u06cc" }, { "relation": "contains", @@ -183398,9 +183429,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_insurances_manytomany", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_insurances_manytomany" }, { "relation": "contains", @@ -183408,9 +183439,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_services_manytomany", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_services_manytomany" }, { "relation": "contains", @@ -183418,9 +183449,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_specialties_manytomany", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinic_specialties_manytomany" }, { "relation": "contains", @@ -183428,9 +183459,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinics", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u062c\u062f\u0648\u0644_clinics" }, { "relation": "contains", @@ -183438,9 +183469,9 @@ "source_file": "docs/tasks/task-06-clinic/database.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_06_clinic_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -183448,9 +183479,9 @@ "source_file": "docs/tasks/task-06-clinic/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_implementation_notes", - "target": "task_06_clinic_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183458,9 +183489,9 @@ "source_file": "docs/tasks/task-06-clinic/implementation_notes.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_implementation_notes_\u0622\u067e\u0644\u0648\u062f_\u062f\u0648_\u0646\u0648\u0639_\u062a\u0635\u0648\u06cc\u0631", - "confidence_score": 1.0 + "target": "task_06_clinic_implementation_notes_\u0622\u067e\u0644\u0648\u062f_\u062f\u0648_\u0646\u0648\u0639_\u062a\u0635\u0648\u06cc\u0631" }, { "relation": "contains", @@ -183468,9 +183499,9 @@ "source_file": "docs/tasks/task-06-clinic/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_implementation_notes_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_implementation_notes_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183478,9 +183509,9 @@ "source_file": "docs/tasks/task-06-clinic/implementation_notes.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_06_clinic_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -183488,9 +183519,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task", - "target": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183498,9 +183529,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_06_clinic_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal" }, { "relation": "contains", @@ -183508,9 +183539,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u0644\u0648\u06af\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0622\u067e\u0644\u0648\u062f_\u062a\u0635\u0648\u06cc\u0631_\u0644\u0648\u06af\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { "relation": "contains", @@ -183518,9 +183549,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -183528,9 +183559,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -183538,9 +183569,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062a\u0631\u0647\u0627\u06cc_get_api_v1_clinics", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062a\u0631\u0647\u0627\u06cc_get_api_v1_clinics" }, { "relation": "contains", @@ -183548,9 +183579,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_patch_api_v1_clinic_uuid", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_patch_api_v1_clinic_uuid" }, { "relation": "contains", @@ -183558,9 +183589,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_post_api_v1_clinic_\u0627\u06cc\u062c\u0627\u062f", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_post_api_v1_clinic_\u0627\u06cc\u062c\u0627\u062f" }, { "relation": "contains", @@ -183568,9 +183599,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_clinic_uuid", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_response_get_api_v1_clinic_uuid" }, { "relation": "contains", @@ -183578,9 +183609,9 @@ "source_file": "docs/tasks/task-06-clinic/task.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_06_clinic_task_\u062a\u0633\u06a9_\u06f0\u06f6_\u0645\u0627\u0698\u0648\u0644_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "target": "task_06_clinic_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_06_clinic_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -183588,9 +183619,9 @@ "source_file": "docs/tasks/task-08-categories/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_architecture", - "target": "task_08_categories_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627" }, { "relation": "contains", @@ -183598,9 +183629,9 @@ "source_file": "docs/tasks/task-08-categories/architecture.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_architecture_entity_category", - "confidence_score": 1.0 + "target": "task_08_categories_architecture_entity_category" }, { "relation": "contains", @@ -183608,9 +183639,9 @@ "source_file": "docs/tasks/task-08-categories/architecture.md", "source_location": "L55", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_architecture_routing_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_08_categories_architecture_routing_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -183618,9 +183649,9 @@ "source_file": "docs/tasks/task-08-categories/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -183628,9 +183659,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database", - "target": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627" }, { "relation": "contains", @@ -183638,9 +183669,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -183648,9 +183679,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u062c\u062f\u0648\u0644_categories", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u062c\u062f\u0648\u0644_categories" }, { "relation": "contains", @@ -183658,9 +183689,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_db_backup_\u0646\u0645\u0648\u0646\u0647", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_db_backup_\u0646\u0645\u0648\u0646\u0647" }, { "relation": "contains", @@ -183668,9 +183699,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -183678,9 +183709,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_bundle_city", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_bundle_city" }, { "relation": "contains", @@ -183688,9 +183719,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u0645\u0642\u0627\u062f\u06cc\u0631_\u0645\u062c\u0627\u0632_bundle", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u0645\u0642\u0627\u062f\u06cc\u0631_\u0645\u062c\u0627\u0632_bundle" }, { "relation": "contains", @@ -183698,9 +183729,9 @@ "source_file": "docs/tasks/task-08-categories/database.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_database_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645_city_bundle", - "confidence_score": 1.0 + "target": "task_08_categories_database_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645_city_bundle" }, { "relation": "contains", @@ -183708,9 +183739,9 @@ "source_file": "docs/tasks/task-08-categories/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_implementation_notes", - "target": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627" }, { "relation": "contains", @@ -183718,9 +183749,9 @@ "source_file": "docs/tasks/task-08-categories/implementation_notes.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_implementation_notes_\u0641\u06cc\u0644\u062a\u0631_\u0634\u0647\u0631_\u0628\u0631\u0627\u0633\u0627\u0633_\u0627\u0633\u062a\u0627\u0646", - "confidence_score": 1.0 + "target": "task_08_categories_implementation_notes_\u0641\u06cc\u0644\u062a\u0631_\u0634\u0647\u0631_\u0628\u0631\u0627\u0633\u0627\u0633_\u0627\u0633\u062a\u0627\u0646" }, { "relation": "contains", @@ -183728,9 +183759,9 @@ "source_file": "docs/tasks/task-08-categories/implementation_notes.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -183738,9 +183769,9 @@ "source_file": "docs/tasks/task-08-categories/implementation_notes.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_implementation_notes_\u0646\u06a9\u062a\u0647_\u0646\u0627\u0645_endpoint", - "confidence_score": 1.0 + "target": "task_08_categories_implementation_notes_\u0646\u06a9\u062a\u0647_\u0646\u0627\u0645_endpoint" }, { "relation": "contains", @@ -183748,9 +183779,9 @@ "source_file": "docs/tasks/task-08-categories/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "target": "task_08_categories_implementation_notes_\u06a9\u0634\u06cc\u0646\u06af", - "confidence_score": 1.0 + "target": "task_08_categories_implementation_notes_\u06a9\u0634\u06cc\u0646\u06af" }, { "relation": "contains", @@ -183758,9 +183789,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task", - "target": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627" }, { "relation": "contains", @@ -183768,9 +183799,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -183778,9 +183809,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -183788,9 +183819,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -183798,9 +183829,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_\u0646\u0645\u0648\u0646\u0647_response", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u0646\u0645\u0648\u0646\u0647_response" }, { "relation": "contains", @@ -183808,9 +183839,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u0646\u06a9\u062a\u0647_\u0645\u0647\u0645" }, { "relation": "contains", @@ -183818,9 +183849,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u062a\u0633\u06a9_\u06f0\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627_\u0648_lookup_\u0647\u0627", - "target": "task_08_categories_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_08_categories_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -183828,9 +183859,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L44", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_08_categories_task_get_api_v1_categorys_specially_doctor", - "confidence_score": 1.0 + "target": "task_08_categories_task_get_api_v1_categorys_specially_doctor" }, { "relation": "contains", @@ -183838,9 +183869,9 @@ "source_file": "docs/tasks/task-08-categories/task.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_08_categories_task_\u0646\u0645\u0648\u0646\u0647_response", - "target": "task_08_categories_task_get_api_v1_categorys_state", - "confidence_score": 1.0 + "target": "task_08_categories_task_get_api_v1_categorys_state" }, { "relation": "contains", @@ -183848,9 +183879,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_architecture", - "target": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -183858,9 +183889,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/architecture.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_architecture_entity_dateoverride", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_architecture_entity_dateoverride" }, { "relation": "contains", @@ -183868,9 +183899,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/architecture.md", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_architecture_entity_holiday", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_architecture_entity_holiday" }, { "relation": "contains", @@ -183878,9 +183909,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/architecture.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_architecture_entity_weeklyschedule", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_architecture_entity_weeklyschedule" }, { "relation": "contains", @@ -183888,9 +183919,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -183898,9 +183929,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database", - "target": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -183908,9 +183939,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -183918,9 +183949,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L82", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_date_overrides", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_date_overrides" }, { "relation": "contains", @@ -183928,9 +183959,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_holidays", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_holidays" }, { "relation": "contains", @@ -183938,9 +183969,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L10", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_weekly_schedules", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u062c\u062f\u0648\u0644_weekly_schedules" }, { "relation": "contains", @@ -183948,9 +183979,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_json_\u0641\u06cc\u0644\u062f_setting_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_json_\u0641\u06cc\u0644\u062f_setting_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -183958,9 +183989,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u0645\u0647\u0645_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_field_setting_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u0645\u0647\u0645_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_field_setting_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -183968,9 +183999,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/database.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -183978,9 +184009,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes", - "target": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -183988,9 +184019,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_get_\u0627\u0632_uuid_\u062f\u06a9\u062a\u0631_\u0646\u0647_uuid_schedule", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_get_\u0627\u0632_uuid_\u062f\u06a9\u062a\u0631_\u0646\u0647_uuid_schedule" }, { "relation": "contains", @@ -183998,9 +184029,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_user_flow", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_user_flow" }, { "relation": "contains", @@ -184008,9 +184039,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_uuid_\u062f\u0631_url_endpoint_\u0644\u06cc\u0633\u062a_override_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_uuid_\u062f\u0631_url_endpoint_\u0644\u06cc\u0633\u062a_override_\u0647\u0627" }, { "relation": "contains", @@ -184018,9 +184049,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0628\u0646\u062f\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u0632_manual_\u0628\u062e\u0634_\u06f2_\u06f8_\u06f4", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_\u0627\u0648\u0644\u0648\u06cc\u062a_\u0628\u0646\u062f\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0627\u0632_manual_\u0628\u062e\u0634_\u06f2_\u06f8_\u06f4" }, { "relation": "contains", @@ -184028,9 +184059,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_session_\u062f\u0631_weekly_schedule_\u0627\u0632_manual_\u0648_api_request", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_session_\u062f\u0631_weekly_schedule_\u0627\u0632_manual_\u0648_api_request" }, { "relation": "contains", @@ -184038,9 +184069,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -184048,9 +184079,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/implementation_notes.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_implementation_notes_\u0645\u0647\u0645_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_field_setting_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_implementation_notes_\u0645\u0647\u0645_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0627\u0632\u06cc_field_setting_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -184058,9 +184089,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task", - "target": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184068,9 +184099,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -184078,9 +184109,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -184088,9 +184119,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -184098,9 +184129,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_task_\u0646\u0645\u0648\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_\u0646\u0645\u0648\u0646\u0647_request" }, { "relation": "contains", @@ -184108,9 +184139,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u062a\u0633\u06a9_\u06f0\u06f9_\u0645\u0627\u0698\u0648\u0644_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -184118,9 +184149,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_date_override", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_date_override" }, { "relation": "contains", @@ -184128,9 +184159,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_holidays", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_holidays" }, { "relation": "contains", @@ -184138,9 +184169,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/task.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_task_\u0646\u0645\u0648\u0646\u0647_request", - "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_weekly_schedule", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_task_post_api_v1_appointment_settings_weekly_schedule" }, { "relation": "contains", @@ -184148,9 +184179,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_user_flow", - "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184158,9 +184189,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/user_flow.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_user_flow_\u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0627\u0632_\u0627\u06cc\u0646_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u06cc_\u06a9\u0646\u062f", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_user_flow_\u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0627\u0632_\u0627\u06cc\u0646_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0645\u06cc_\u06a9\u0646\u062f" }, { "relation": "contains", @@ -184168,9 +184199,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/user_flow.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_override_\u06cc\u06a9_\u0631\u0648\u0632_\u062e\u0627\u0635", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_override_\u06cc\u06a9_\u0631\u0648\u0632_\u062e\u0627\u0635" }, { "relation": "contains", @@ -184178,9 +184209,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0646\u0638\u06cc\u0645_\u0627\u0648\u0644\u06cc\u0647_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062a\u0648\u0633\u0637_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062a\u0646\u0638\u06cc\u0645_\u0627\u0648\u0644\u06cc\u0647_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062a\u0648\u0633\u0637_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -184188,9 +184219,9 @@ "source_file": "docs/tasks/task-09-appointment-settings/user_flow.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f0\u06f9_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0645\u0631\u062e\u0635\u06cc_\u06cc\u0627_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a", - "confidence_score": 1.0 + "target": "task_09_appointment_settings_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u062b\u0628\u062a_\u0645\u0631\u062e\u0635\u06cc_\u06cc\u0627_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a" }, { "relation": "contains", @@ -184198,9 +184229,9 @@ "source_file": "docs/tasks/task-10-appointment/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_architecture", - "target": "task_10_appointment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184208,9 +184239,9 @@ "source_file": "docs/tasks/task-10-appointment/architecture.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_architecture_entity_appointment", - "confidence_score": 1.0 + "target": "task_10_appointment_architecture_entity_appointment" }, { "relation": "contains", @@ -184218,9 +184249,9 @@ "source_file": "docs/tasks/task-10-appointment/architecture.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_architecture_slotcalculatorservice", - "confidence_score": 1.0 + "target": "task_10_appointment_architecture_slotcalculatorservice" }, { "relation": "contains", @@ -184228,9 +184259,9 @@ "source_file": "docs/tasks/task-10-appointment/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_appointment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -184238,9 +184269,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database", - "target": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184248,9 +184279,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -184258,9 +184289,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u062c\u062f\u0648\u0644_appointments", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u062c\u062f\u0648\u0644_appointments" }, { "relation": "contains", @@ -184268,9 +184299,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0631\u0648\u0627\u0628\u0637", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0631\u0648\u0627\u0628\u0637" }, { "relation": "contains", @@ -184278,9 +184309,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_json_\u0641\u06cc\u0644\u062f_slot_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_json_\u0641\u06cc\u0644\u062f_slot_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -184288,9 +184319,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L63", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -184298,9 +184329,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -184308,9 +184339,9 @@ "source_file": "docs/tasks/task-10-appointment/database.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_database_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0645\u0644_field_status_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_10_appointment_database_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0645\u0644_field_status_\u0627\u0632_config" }, { "relation": "contains", @@ -184318,9 +184349,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes", - "target": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184328,9 +184359,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_response_\u06a9\u0627\u0645\u0644_\u0646\u0648\u0628\u062a_\u0627\u0632_finalizeddata_drupal", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_response_\u06a9\u0627\u0645\u0644_\u0646\u0648\u0628\u062a_\u0627\u0632_finalizeddata_drupal" }, { "relation": "contains", @@ -184338,9 +184369,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_slot_\u0627\u0632_\u06a9\u062f_drupal", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_slot_\u0627\u0632_\u06a9\u062f_drupal" }, { "relation": "contains", @@ -184348,9 +184379,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u062a\u0634\u062e\u06cc\u0635_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0632_http_host_multi_tenant", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u062a\u0634\u062e\u06cc\u0635_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0632_http_host_multi_tenant" }, { "relation": "contains", @@ -184358,9 +184389,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_race_condition", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_race_condition" }, { "relation": "contains", @@ -184368,9 +184399,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L108", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u0631\u0648\u0632\u0647\u0627\u06cc_\u063a\u06cc\u0631_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0631\u0648\u0632\u0647\u0627\u06cc_\u063a\u06cc\u0631_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648" }, { "relation": "contains", @@ -184378,9 +184409,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0632_\u06a9\u062f_drupal", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0632_\u06a9\u062f_drupal" }, { "relation": "contains", @@ -184388,9 +184419,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -184398,9 +184429,9 @@ "source_file": "docs/tasks/task-10-appointment/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_implementation_notes_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_10_appointment_implementation_notes_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0646\u0648\u0628\u062a_\u0627\u0632_drupal" }, { "relation": "contains", @@ -184408,9 +184439,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task", - "target": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184418,9 +184449,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_appointment_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -184428,9 +184459,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L245", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_get_api_v1_appointment_my_appointments_userid", - "confidence_score": 1.0 + "target": "task_10_appointment_task_get_api_v1_appointment_my_appointments_userid" }, { "relation": "contains", @@ -184438,9 +184469,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L223", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_get_api_v1_appointment_not_available_doctorid", - "confidence_score": 1.0 + "target": "task_10_appointment_task_get_api_v1_appointment_not_available_doctorid" }, { "relation": "contains", @@ -184448,9 +184479,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_get_api_v1_appointment_slots", - "confidence_score": 1.0 + "target": "task_10_appointment_task_get_api_v1_appointment_slots" }, { "relation": "contains", @@ -184458,9 +184489,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L162", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_patch_api_v1_appointment_uuid_cancel_\u0644\u063a\u0648_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "task_10_appointment_task_patch_api_v1_appointment_uuid_cancel_\u0644\u063a\u0648_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -184468,9 +184499,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L192", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_patch_api_v1_appointment_uuid_status", - "confidence_score": 1.0 + "target": "task_10_appointment_task_patch_api_v1_appointment_uuid_status" }, { "relation": "contains", @@ -184478,9 +184509,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_post_api_v1_appointment", - "confidence_score": 1.0 + "target": "task_10_appointment_task_post_api_v1_appointment" }, { "relation": "contains", @@ -184488,9 +184519,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_status_machine_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "task_10_appointment_task_status_machine_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -184498,9 +184529,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -184508,9 +184539,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -184518,9 +184549,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_\u0641\u0644\u0648\u06cc_\u06a9\u0627\u0645\u0644_\u0631\u0632\u0631\u0648_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u0641\u0644\u0648\u06cc_\u06a9\u0627\u0645\u0644_\u0631\u0632\u0631\u0648_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -184528,9 +184559,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L279", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -184538,9 +184569,9 @@ "source_file": "docs/tasks/task-10-appointment/task.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_task_\u062a\u0633\u06a9_\u06f1\u06f0_\u0645\u0627\u0698\u0648\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_10_appointment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -184548,9 +184579,9 @@ "source_file": "docs/tasks/task-10-appointment/user_flow.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_user_flow", - "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "confidence_score": 1.0 + "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc" }, { "relation": "contains", @@ -184558,9 +184589,9 @@ "source_file": "docs/tasks/task-10-appointment/user_flow.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646", - "confidence_score": 1.0 + "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u0645\u0634\u0627\u0647\u062f\u0647_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646" }, { "relation": "contains", @@ -184568,9 +184599,9 @@ "source_file": "docs/tasks/task-10-appointment/user_flow.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f0_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc", - "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0645\u0644_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "task_10_appointment_user_flow_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0627\u0645\u0644_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -184578,9 +184609,9 @@ "source_file": "docs/tasks/task-11-insurance/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_architecture", - "target": "task_11_insurance_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "task_11_insurance_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -184588,9 +184619,9 @@ "source_file": "docs/tasks/task-11-insurance/architecture.md", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_architecture_entity_insurance", - "confidence_score": 1.0 + "target": "task_11_insurance_architecture_entity_insurance" }, { "relation": "contains", @@ -184598,9 +184629,9 @@ "source_file": "docs/tasks/task-11-insurance/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_insurance_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -184608,9 +184639,9 @@ "source_file": "docs/tasks/task-11-insurance/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_database", - "target": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -184618,9 +184649,9 @@ "source_file": "docs/tasks/task-11-insurance/database.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_insurance_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -184628,9 +184659,9 @@ "source_file": "docs/tasks/task-11-insurance/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_database_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_11_insurance_database_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -184638,9 +184669,9 @@ "source_file": "docs/tasks/task-11-insurance/database.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_database_\u062c\u062f\u0648\u0644_doctor_insurances_\u0631\u0627\u0628\u0637\u0647_doctor_insurance", - "confidence_score": 1.0 + "target": "task_11_insurance_database_\u062c\u062f\u0648\u0644_doctor_insurances_\u0631\u0627\u0628\u0637\u0647_doctor_insurance" }, { "relation": "contains", @@ -184648,9 +184679,9 @@ "source_file": "docs/tasks/task-11-insurance/database.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_11_insurance_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -184658,9 +184689,9 @@ "source_file": "docs/tasks/task-11-insurance/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_implementation_notes", - "target": "task_11_insurance_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "task_11_insurance_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -184668,9 +184699,9 @@ "source_file": "docs/tasks/task-11-insurance/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_implementation_notes_\u0631\u0627\u0628\u0637\u0647_\u0628\u0627_categories", - "confidence_score": 1.0 + "target": "task_11_insurance_implementation_notes_\u0631\u0627\u0628\u0637\u0647_\u0628\u0627_categories" }, { "relation": "contains", @@ -184678,9 +184709,9 @@ "source_file": "docs/tasks/task-11-insurance/implementation_notes.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_insurance_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -184688,9 +184719,9 @@ "source_file": "docs/tasks/task-11-insurance/implementation_notes.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_implementation_notes_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0628\u0627_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_11_insurance_implementation_notes_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0628\u0627_\u0644\u06cc\u0633\u062a_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -184698,9 +184729,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task", - "target": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "confidence_score": 1.0 + "target": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647" }, { "relation": "contains", @@ -184708,9 +184739,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_insurance_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -184718,9 +184749,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_11_insurance_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -184728,9 +184759,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_task_\u062a\u0648\u0636\u06cc\u062d_21", - "confidence_score": 1.0 + "target": "task_11_insurance_task_\u062a\u0648\u0636\u06cc\u062d_21" }, { "relation": "contains", @@ -184738,9 +184769,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_11_insurance_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -184748,9 +184779,9 @@ "source_file": "docs/tasks/task-11-insurance/task.md", "source_location": "L15", "weight": 1.0, + "confidence_score": 1.0, "source": "task_11_insurance_task_\u062a\u0633\u06a9_\u06f1\u06f1_\u0645\u0627\u0698\u0648\u0644_\u0628\u06cc\u0645\u0647", - "target": "task_11_insurance_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_11_insurance_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -184758,9 +184789,9 @@ "source_file": "docs/tasks/task-12-rating-comment/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_architecture", - "target": "task_12_rating_comment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "confidence_score": 1.0 + "target": "task_12_rating_comment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a" }, { "relation": "contains", @@ -184768,9 +184799,9 @@ "source_file": "docs/tasks/task-12-rating-comment/architecture.md", "source_location": "L59", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_architecture_entity_comment", - "confidence_score": 1.0 + "target": "task_12_rating_comment_architecture_entity_comment" }, { "relation": "contains", @@ -184778,9 +184809,9 @@ "source_file": "docs/tasks/task-12-rating-comment/architecture.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_architecture_entity_rating", - "confidence_score": 1.0 + "target": "task_12_rating_comment_architecture_entity_rating" }, { "relation": "contains", @@ -184788,9 +184819,9 @@ "source_file": "docs/tasks/task-12-rating-comment/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_12_rating_comment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -184798,9 +184829,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database", - "target": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a" }, { "relation": "contains", @@ -184808,9 +184839,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -184818,9 +184849,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_comments", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_comments" }, { "relation": "contains", @@ -184828,9 +184859,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_likes", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_likes" }, { "relation": "contains", @@ -184838,9 +184869,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_ratings", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u062c\u062f\u0648\u0644_ratings" }, { "relation": "contains", @@ -184848,9 +184879,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u0645\u0647\u0645_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0627\u0632_db", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u0645\u0647\u0645_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0627\u0632_db" }, { "relation": "contains", @@ -184858,9 +184889,9 @@ "source_file": "docs/tasks/task-12-rating-comment/database.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_database_\u0646\u06a9\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_12_rating_comment_database_\u0646\u06a9\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0647\u0645" }, { "relation": "contains", @@ -184868,9 +184899,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes", - "target": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a" }, { "relation": "contains", @@ -184878,9 +184909,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0622\u0645\u0627\u0631_\u062f\u06a9\u062a\u0631_get_api_v1_clinicpro_comment_doctor_rate_doctoruuid", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0622\u0645\u0627\u0631_\u062f\u06a9\u062a\u0631_get_api_v1_clinicpro_comment_doctor_rate_doctoruuid" }, { "relation": "contains", @@ -184888,9 +184919,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L140", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0645\u0642\u0627\u062f\u06cc\u0631_rating", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0645\u0642\u0627\u062f\u06cc\u0631_rating" }, { "relation": "contains", @@ -184898,9 +184929,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L133", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0638\u0631\u0627\u062a", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u062a\u0623\u06cc\u06cc\u062f_\u0646\u0638\u0631\u0627\u062a" }, { "relation": "contains", @@ -184908,9 +184939,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u062a\u0646\u0627\u0642\u0636_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f\u0647\u0627_api_vs_db_\u0628\u0633\u06cc\u0627\u0631_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u062a\u0646\u0627\u0642\u0636_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f\u0647\u0627_api_vs_db_\u0628\u0633\u06cc\u0627\u0631_\u0645\u0647\u0645" }, { "relation": "contains", @@ -184918,9 +184949,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L49", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0633\u06cc\u0633\u062a\u0645_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_\u0648\u0632\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0633\u06cc\u0633\u062a\u0645_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_\u0648\u0632\u0646\u06cc" }, { "relation": "contains", @@ -184928,9 +184959,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L148", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -184938,9 +184969,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_rate_uuid", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_rate_uuid" }, { "relation": "contains", @@ -184948,9 +184979,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_implementation_notes_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_post_api_v1_clinicpro_rate", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_post_api_v1_clinicpro_rate" }, { "relation": "contains", @@ -184958,9 +184989,9 @@ "source_file": "docs/tasks/task-12-rating-comment/implementation_notes.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_implementation_notes_\u0633\u06cc\u0633\u062a\u0645_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_\u0648\u0632\u0646\u06cc", - "target": "task_12_rating_comment_implementation_notes_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_calculatedoctorrating_\u062f\u0631_symfony", - "confidence_score": 1.0 + "target": "task_12_rating_comment_implementation_notes_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_calculatedoctorrating_\u062f\u0631_symfony" }, { "relation": "contains", @@ -184968,9 +184999,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task", - "target": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a" }, { "relation": "contains", @@ -184978,9 +185009,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal" }, { "relation": "contains", @@ -184988,9 +185019,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -184998,9 +185029,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -185008,9 +185039,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_request_\u0645\u062a\u0641\u0627\u0648\u062a_\u0627\u0632_db", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_request_\u0645\u062a\u0641\u0627\u0648\u062a_\u0627\u0632_db" }, { "relation": "contains", @@ -185018,9 +185049,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L73", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_rate_uuid", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_rate_uuid" }, { "relation": "contains", @@ -185028,9 +185059,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_unverified_comments_uuid", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_patch_api_v1_clinicpro_unverified_comments_uuid" }, { "relation": "contains", @@ -185038,9 +185069,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_post_api_v1_clinicpro_rate", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u0645\u0648\u0646\u0647_\u0648\u0627\u0642\u0639\u06cc_request_post_api_v1_clinicpro_rate" }, { "relation": "contains", @@ -185048,9 +185079,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -185058,9 +185089,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_\u062a\u0633\u06a9_\u06f1\u06f2_\u0645\u0627\u0698\u0648\u0644_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0648_\u0646\u0638\u0631\u0627\u062a", - "target": "task_12_rating_comment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -185068,9 +185099,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "target": "task_12_rating_comment_task_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_rate", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc_rate" }, { "relation": "contains", @@ -185078,9 +185109,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "target": "task_12_rating_comment_task_\u0644\u0627\u06cc\u06a9_like", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0644\u0627\u06cc\u06a9_like" }, { "relation": "contains", @@ -185088,9 +185119,9 @@ "source_file": "docs/tasks/task-12-rating-comment/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_12_rating_comment_task_endpoint_\u0647\u0627_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal", - "target": "task_12_rating_comment_task_\u0646\u0638\u0631\u0627\u062a_comment", - "confidence_score": 1.0 + "target": "task_12_rating_comment_task_\u0646\u0638\u0631\u0627\u062a_comment" }, { "relation": "contains", @@ -185098,9 +185129,9 @@ "source_file": "docs/tasks/task-13-like/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_architecture", - "target": "task_13_like_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_like_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9" }, { "relation": "contains", @@ -185108,9 +185139,9 @@ "source_file": "docs/tasks/task-13-like/architecture.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_architecture_entity_like", - "confidence_score": 1.0 + "target": "task_13_like_architecture_entity_like" }, { "relation": "contains", @@ -185118,9 +185149,9 @@ "source_file": "docs/tasks/task-13-like/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_like_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -185128,9 +185159,9 @@ "source_file": "docs/tasks/task-13-like/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_database", - "target": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9" }, { "relation": "contains", @@ -185138,9 +185169,9 @@ "source_file": "docs/tasks/task-13-like/database.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_like_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -185148,9 +185179,9 @@ "source_file": "docs/tasks/task-13-like/database.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_database_\u062c\u062f\u0648\u0644_likes", - "confidence_score": 1.0 + "target": "task_13_like_database_\u062c\u062f\u0648\u0644_likes" }, { "relation": "contains", @@ -185158,9 +185189,9 @@ "source_file": "docs/tasks/task-13-like/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal_\u0627\u0632_config_\u062a\u0623\u06cc\u06cc\u062f_\u0634\u062f\u0647", - "confidence_score": 1.0 + "target": "task_13_like_database_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_drupal_\u0627\u0632_config_\u062a\u0623\u06cc\u06cc\u062f_\u0634\u062f\u0647" }, { "relation": "contains", @@ -185168,9 +185199,9 @@ "source_file": "docs/tasks/task-13-like/database.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_13_like_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -185178,9 +185209,9 @@ "source_file": "docs/tasks/task-13-like/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_implementation_notes", - "target": "task_13_like_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_like_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9" }, { "relation": "contains", @@ -185188,9 +185219,9 @@ "source_file": "docs/tasks/task-13-like/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_implementation_notes_toggle_like", - "confidence_score": 1.0 + "target": "task_13_like_implementation_notes_toggle_like" }, { "relation": "contains", @@ -185198,9 +185229,9 @@ "source_file": "docs/tasks/task-13-like/implementation_notes.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_implementation_notes_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u0644\u0627\u06cc\u06a9_\u062f\u0648\u06af\u0627\u0646\u0647", - "confidence_score": 1.0 + "target": "task_13_like_implementation_notes_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u0644\u0627\u06cc\u06a9_\u062f\u0648\u06af\u0627\u0646\u0647" }, { "relation": "contains", @@ -185208,9 +185239,9 @@ "source_file": "docs/tasks/task-13-like/implementation_notes.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_like_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -185218,9 +185249,9 @@ "source_file": "docs/tasks/task-13-like/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_task", - "target": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "confidence_score": 1.0 + "target": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9" }, { "relation": "contains", @@ -185228,9 +185259,9 @@ "source_file": "docs/tasks/task-13-like/task.md", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_like_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -185238,9 +185269,9 @@ "source_file": "docs/tasks/task-13-like/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_13_like_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -185248,9 +185279,9 @@ "source_file": "docs/tasks/task-13-like/task.md", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_13_like_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -185258,9 +185289,9 @@ "source_file": "docs/tasks/task-13-like/task.md", "source_location": "L13", "weight": 1.0, + "confidence_score": 1.0, "source": "task_13_like_task_\u062a\u0633\u06a9_\u06f1\u06f3_\u0645\u0627\u0698\u0648\u0644_\u0644\u0627\u06cc\u06a9", - "target": "task_13_like_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_13_like_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -185268,9 +185299,9 @@ "source_file": "docs/tasks/task-14-secretary/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_architecture", - "target": "task_14_secretary_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185278,9 +185309,9 @@ "source_file": "docs/tasks/task-14-secretary/architecture.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_architecture_entity_secretary", - "confidence_score": 1.0 + "target": "task_14_secretary_architecture_entity_secretary" }, { "relation": "contains", @@ -185288,9 +185319,9 @@ "source_file": "docs/tasks/task-14-secretary/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_secretary_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -185298,9 +185329,9 @@ "source_file": "docs/tasks/task-14-secretary/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_database", - "target": "task_14_secretary_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185308,9 +185339,9 @@ "source_file": "docs/tasks/task-14-secretary/database.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_secretary_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -185318,9 +185349,9 @@ "source_file": "docs/tasks/task-14-secretary/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_database_\u062c\u062f\u0648\u0644_doctor_secretaries", - "confidence_score": 1.0 + "target": "task_14_secretary_database_\u062c\u062f\u0648\u0644_doctor_secretaries" }, { "relation": "contains", @@ -185328,9 +185359,9 @@ "source_file": "docs/tasks/task-14-secretary/database.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_14_secretary_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -185338,9 +185369,9 @@ "source_file": "docs/tasks/task-14-secretary/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_implementation_notes", - "target": "task_14_secretary_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185348,9 +185379,9 @@ "source_file": "docs/tasks/task-14-secretary/implementation_notes.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627_\u062f\u0631_\u0633\u06cc\u0633\u062a\u0645", - "confidence_score": 1.0 + "target": "task_14_secretary_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627_\u062f\u0631_\u0633\u06cc\u0633\u062a\u0645" }, { "relation": "contains", @@ -185358,9 +185389,9 @@ "source_file": "docs/tasks/task-14-secretary/implementation_notes.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627\u06cc_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627\u06cc_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185368,9 +185399,9 @@ "source_file": "docs/tasks/task-14-secretary/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_implementation_notes_\u0646\u0642\u0634_\u06a9\u0627\u0631\u0628\u0631\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_implementation_notes_\u0646\u0642\u0634_\u06a9\u0627\u0631\u0628\u0631\u06cc" }, { "relation": "contains", @@ -185378,9 +185409,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task", - "target": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185388,9 +185419,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_secretary_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -185398,9 +185429,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L227", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_patch_api_v1_secretary_uuid", - "confidence_score": 1.0 + "target": "task_14_secretary_task_patch_api_v1_secretary_uuid" }, { "relation": "contains", @@ -185408,9 +185439,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L159", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_post_api_v1_secretary", - "confidence_score": 1.0 + "target": "task_14_secretary_task_post_api_v1_secretary" }, { "relation": "contains", @@ -185418,9 +185449,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -185428,9 +185459,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -185438,9 +185469,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631" }, { "relation": "contains", @@ -185448,9 +185479,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u062a\u0633\u06a9_\u06f1\u06f4_\u0645\u0627\u0698\u0648\u0644_\u0645\u0646\u0634\u06cc", - "target": "task_14_secretary_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -185458,9 +185489,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "target": "task_14_secretary_task_\u0633\u0627\u062e\u062a\u0627\u0631_json", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u0633\u0627\u062e\u062a\u0627\u0631_json" }, { "relation": "contains", @@ -185468,9 +185499,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L71", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "target": "task_14_secretary_task_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_resource_\u062c\u062f\u06cc\u062f_\u062f\u0631_\u0622\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631\u06cc_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_resource_\u062c\u062f\u06cc\u062f_\u062f\u0631_\u0622\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -185478,9 +185509,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "target": "task_14_secretary_task_\u0645\u0646\u0627\u0628\u0639_\u0648_\u0639\u0645\u0644\u06cc\u0627\u062a_\u0641\u0639\u0644\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u0645\u0646\u0627\u0628\u0639_\u0648_\u0639\u0645\u0644\u06cc\u0627\u062a_\u0641\u0639\u0644\u06cc" }, { "relation": "contains", @@ -185488,9 +185519,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "target": "task_14_secretary_task_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_php_secretarypermissionchecker", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_php_secretarypermissionchecker" }, { "relation": "contains", @@ -185498,9 +185529,9 @@ "source_file": "docs/tasks/task-14-secretary/task.md", "source_location": "L125", "weight": 1.0, + "confidence_score": 1.0, "source": "task_14_secretary_task_\u0633\u06cc\u0633\u062a\u0645_\u0645\u062c\u0648\u0632\u0647\u0627_resource_based_permissions_\u0645\u0642\u06cc\u0627\u0633_\u067e\u0630\u06cc\u0631", - "target": "task_14_secretary_task_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_14_secretary_task_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u0645\u0646\u0634\u06cc" }, { "relation": "contains", @@ -185508,9 +185539,9 @@ "source_file": "docs/tasks/task-15-payment/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_architecture", - "target": "task_15_payment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185518,9 +185549,9 @@ "source_file": "docs/tasks/task-15-payment/architecture.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_architecture_entity_payment", - "confidence_score": 1.0 + "target": "task_15_payment_architecture_entity_payment" }, { "relation": "contains", @@ -185528,9 +185559,9 @@ "source_file": "docs/tasks/task-15-payment/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -185538,9 +185569,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database", - "target": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185548,9 +185579,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -185558,9 +185589,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627\u06cc_subscription_payments", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627\u06cc_subscription_payments" }, { "relation": "contains", @@ -185568,9 +185599,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L101", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u062a\u0641\u0627\u0648\u062a_payments_\u0648_subscription_payments", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u062a\u0641\u0627\u0648\u062a_payments_\u0648_subscription_payments" }, { "relation": "contains", @@ -185578,9 +185609,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u062c\u062f\u0648\u0644_payments", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u062c\u062f\u0648\u0644_payments" }, { "relation": "contains", @@ -185588,9 +185619,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L70", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u062c\u062f\u0648\u0644_subscription_payments_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0634\u062a\u0631\u0627\u06a9", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u062c\u062f\u0648\u0644_subscription_payments_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0634\u062a\u0631\u0627\u06a9" }, { "relation": "contains", @@ -185598,9 +185629,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0631\u0648\u0634_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_field_payment_method_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0631\u0648\u0634_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_field_payment_method_\u0627\u0632_config" }, { "relation": "contains", @@ -185608,9 +185639,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -185618,9 +185649,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -185628,9 +185659,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u0648\u0636\u0639\u06cc\u062a_appointment", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u0648\u0636\u0639\u06cc\u062a_appointment" }, { "relation": "contains", @@ -185638,9 +185669,9 @@ "source_file": "docs/tasks/task-15-payment/database.md", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_database_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_field_status_\u0627\u0632_config", - "confidence_score": 1.0 + "target": "task_15_payment_database_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_\u067e\u0631\u062f\u0627\u062e\u062a_field_status_\u0627\u0632_config" }, { "relation": "contains", @@ -185648,9 +185679,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes", - "target": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185658,9 +185689,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L68", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_callback_mellat", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_callback_mellat" }, { "relation": "contains", @@ -185668,9 +185699,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L64", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_frontend_address", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_frontend_address" }, { "relation": "contains", @@ -185678,9 +185709,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L85", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_idempotency", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_idempotency" }, { "relation": "contains", @@ -185688,9 +185719,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0627\u0632_\u06a9\u062f_drupal", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0627\u0632_\u06a9\u062f_drupal" }, { "relation": "contains", @@ -185698,9 +185729,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_\u0634\u0631\u0637_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u0634\u0631\u0637_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185708,9 +185739,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L54", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_\u0642\u06cc\u0645\u062a_\u0627\u0632_config_\u0646\u0647_request", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u0642\u06cc\u0645\u062a_\u0627\u0632_config_\u0646\u0647_request" }, { "relation": "contains", @@ -185718,9 +185749,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L93", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -185728,9 +185759,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L42", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_implementation_notes_\u0648\u0636\u0639\u06cc\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u0648\u0636\u0639\u06cc\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc" }, { "relation": "contains", @@ -185738,9 +185769,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0627\u0632_\u06a9\u062f_drupal", - "target": "task_15_payment_implementation_notes_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_symfony", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_symfony" }, { "relation": "contains", @@ -185748,9 +185779,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0627\u0632_\u06a9\u062f_drupal", - "target": "task_15_payment_implementation_notes_\u06f1_\u0628\u0627\u0646\u06a9_\u0645\u0644\u062a_mellat_\u067e\u0631\u0648\u062a\u06a9\u0644_soap", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u06f1_\u0628\u0627\u0646\u06a9_\u0645\u0644\u062a_mellat_\u067e\u0631\u0648\u062a\u06a9\u0644_soap" }, { "relation": "contains", @@ -185758,9 +185789,9 @@ "source_file": "docs/tasks/task-15-payment/implementation_notes.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_implementation_notes_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u067e\u0631\u0648\u0698\u0647_\u0627\u0632_\u06a9\u062f_drupal", - "target": "task_15_payment_implementation_notes_\u06f2_sep_\u0633\u0627\u0645\u0627\u0646_\u062f\u0631\u06af\u0627\u0647_\u062f\u0648\u0645", - "confidence_score": 1.0 + "target": "task_15_payment_implementation_notes_\u06f2_sep_\u0633\u0627\u0645\u0627\u0646_\u062f\u0631\u06af\u0627\u0647_\u062f\u0648\u0645" }, { "relation": "contains", @@ -185768,9 +185799,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task", - "target": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185778,9 +185809,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -185788,9 +185819,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_get_api_v1_payment_uuid", - "confidence_score": 1.0 + "target": "task_15_payment_task_get_api_v1_payment_uuid" }, { "relation": "contains", @@ -185798,9 +185829,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_post_api_v1_payment", - "confidence_score": 1.0 + "target": "task_15_payment_task_post_api_v1_payment" }, { "relation": "contains", @@ -185808,9 +185839,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_post_api_v1_payment_callback_mellat", - "confidence_score": 1.0 + "target": "task_15_payment_task_post_api_v1_payment_callback_mellat" }, { "relation": "contains", @@ -185818,9 +185849,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L67", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_strategy_pattern_\u0628\u0631\u0627\u06cc_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_task_strategy_pattern_\u0628\u0631\u0627\u06cc_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627" }, { "relation": "contains", @@ -185828,9 +185859,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L190", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_subscription_payment_post_api_v1_subscription_payment", - "confidence_score": 1.0 + "target": "task_15_payment_task_subscription_payment_post_api_v1_subscription_payment" }, { "relation": "contains", @@ -185838,9 +185869,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0627\u0645\u0646\u06cc\u062a_ip_whitelist_\u0628\u0631\u0627\u06cc_callback", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0627\u0645\u0646\u06cc\u062a_ip_whitelist_\u0628\u0631\u0627\u06cc_callback" }, { "relation": "contains", @@ -185848,9 +185879,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L235", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0627\u0645\u0646\u06cc\u062a_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_open_redirect", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0627\u0645\u0646\u06cc\u062a_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_open_redirect" }, { "relation": "contains", @@ -185858,9 +185889,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -185868,9 +185899,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L24", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -185878,9 +185909,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0641\u0644\u0648\u06cc_refund_\u0644\u063a\u0648_\u0646\u0648\u0628\u062a_\u0628\u0639\u062f_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0641\u0644\u0648\u06cc_refund_\u0644\u063a\u0648_\u0646\u0648\u0628\u062a_\u0628\u0639\u062f_\u0627\u0632_\u067e\u0631\u062f\u0627\u062e\u062a" }, { "relation": "contains", @@ -185888,9 +185919,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0641\u0644\u0648\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0648\u0628\u062a", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0641\u0644\u0648\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0648\u0628\u062a" }, { "relation": "contains", @@ -185898,9 +185929,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L225", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -185908,9 +185939,9 @@ "source_file": "docs/tasks/task-15-payment/task.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_15_payment_task_\u062a\u0633\u06a9_\u06f1\u06f5_\u0645\u0627\u0698\u0648\u0644_\u067e\u0631\u062f\u0627\u062e\u062a", - "target": "task_15_payment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_15_payment_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -185918,9 +185949,9 @@ "source_file": "docs/tasks/task-16-representation/architecture.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_architecture", - "target": "task_16_representation_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_16_representation_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -185928,9 +185959,9 @@ "source_file": "docs/tasks/task-16-representation/architecture.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_architecture_\u0633\u0627\u062e\u062a\u0627\u0631_\u0641\u0627\u06cc\u0644_\u0647\u0627" }, { "relation": "contains", @@ -185938,9 +185969,9 @@ "source_file": "docs/tasks/task-16-representation/architecture.md", "source_location": "L21", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u062c\u0631\u06cc\u0627\u0646", - "confidence_score": 1.0 + "target": "task_16_representation_architecture_\u0646\u0645\u0648\u062f\u0627\u0631_\u062c\u0631\u06cc\u0627\u0646" }, { "relation": "contains", @@ -185948,9 +185979,9 @@ "source_file": "docs/tasks/task-16-representation/architecture.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_architecture_\u0645\u0639\u0645\u0627\u0631\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_architecture_\u06a9\u0648\u0626\u0631\u06cc_\u062f\u0631\u0622\u0645\u062f_\u0633\u0627\u0644\u0627\u0646\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0647\u0627\u06cc_\u0634\u0645\u0633\u06cc", - "confidence_score": 1.0 + "target": "task_16_representation_architecture_\u06a9\u0648\u0626\u0631\u06cc_\u062f\u0631\u0622\u0645\u062f_\u0633\u0627\u0644\u0627\u0646\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0647\u0627\u06cc_\u0634\u0645\u0633\u06cc" }, { "relation": "contains", @@ -185958,9 +185989,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database", - "target": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation" }, { "relation": "contains", @@ -185968,9 +185999,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -185978,9 +186009,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u062c\u062f\u0648\u0644_representations", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u062c\u062f\u0648\u0644_representations" }, { "relation": "contains", @@ -185988,9 +186019,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u0631\u0648\u0627\u0628\u0637_\u0628\u0627_\u062c\u062f\u0627\u0648\u0644_\u062f\u06cc\u06af\u0631", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0631\u0648\u0627\u0628\u0637_\u0628\u0627_\u062c\u062f\u0627\u0648\u0644_\u062f\u06cc\u06af\u0631" }, { "relation": "contains", @@ -185998,9 +186029,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L20", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0646\u0645\u0648\u0646\u0647_\u062f\u0627\u062f\u0647_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0632_db_backup" }, { "relation": "contains", @@ -186008,9 +186039,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -186018,9 +186049,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L37", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation", - "target": "task_16_representation_database_\u06a9\u0648\u0626\u0631\u06cc_\u0647\u0627\u06cc_\u0622\u0645\u0627\u0631\u06cc_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u06a9\u0648\u0626\u0631\u06cc_\u0647\u0627\u06cc_\u0622\u0645\u0627\u0631\u06cc_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc" }, { "relation": "contains", @@ -186028,9 +186059,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u06a9\u0648\u0626\u0631\u06cc_\u0647\u0627\u06cc_\u0622\u0645\u0627\u0631\u06cc_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc", - "target": "task_16_representation_database_\u0628\u06cc\u0645\u0627\u0631\u0627\u0646_\u06cc\u06a9_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_total_patients", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0628\u06cc\u0645\u0627\u0631\u0627\u0646_\u06cc\u06a9_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_total_patients" }, { "relation": "contains", @@ -186038,9 +186069,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u06a9\u0648\u0626\u0631\u06cc_\u0647\u0627\u06cc_\u0622\u0645\u0627\u0631\u06cc_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc", - "target": "task_16_representation_database_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0627\u0645\u0631\u0648\u0632", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0627\u0645\u0631\u0648\u0632" }, { "relation": "contains", @@ -186048,9 +186079,9 @@ "source_file": "docs/tasks/task-16-representation/database.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_database_\u06a9\u0648\u0626\u0631\u06cc_\u0647\u0627\u06cc_\u0622\u0645\u0627\u0631\u06cc_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc", - "target": "task_16_representation_database_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06cc\u06a9_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc_\u0627\u0632_representationservice_php", - "confidence_score": 1.0 + "target": "task_16_representation_database_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627\u06cc_\u06cc\u06a9_\u0645\u0627\u0647_\u0634\u0645\u0633\u06cc_\u0627\u0632_representationservice_php" }, { "relation": "contains", @@ -186058,9 +186089,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes", - "target": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631" }, { "relation": "contains", @@ -186068,9 +186099,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_endpoint_filter_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0645\u0627\u0647\u0627\u0646\u0647", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_endpoint_filter_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0645\u0627\u0647\u0627\u0646\u0647" }, { "relation": "contains", @@ -186078,9 +186109,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_endpoint_my_appointments_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_endpoint_my_appointments_\u0628\u0631\u0627\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -186088,9 +186119,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_endpoint_my_doctor_\u0628\u0631\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_endpoint_my_doctor_\u0628\u0631\u0627\u06cc_\u0628\u06cc\u0645\u0627\u0631" }, { "relation": "contains", @@ -186098,9 +186129,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_endpoint_yearly_income_\u062f\u0631\u0622\u0645\u062f_\u0633\u0627\u0644\u0627\u0646\u0647", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_endpoint_yearly_income_\u062f\u0631\u0622\u0645\u062f_\u0633\u0627\u0644\u0627\u0646\u0647" }, { "relation": "contains", @@ -186108,9 +186139,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_jalalidateservice_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_symfony", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_jalalidateservice_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0631_symfony" }, { "relation": "contains", @@ -186118,9 +186149,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_representation_\u062f\u0631_drupal", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u0633\u0627\u062e\u062a\u0627\u0631_representation_\u062f\u0631_drupal" }, { "relation": "contains", @@ -186128,9 +186159,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0632_host", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0627\u0632_host" }, { "relation": "contains", @@ -186138,9 +186169,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L126", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u0645\u062c\u0648\u0632\u0647\u0627" }, { "relation": "contains", @@ -186148,9 +186179,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_\u0645\u0647\u0645_\u0627\u06cc\u0646_\u0645\u0627\u0698\u0648\u0644_\u062f\u0648_\u0646\u0642\u0634_\u062f\u0627\u0631\u062f", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u0645\u0647\u0645_\u0627\u06cc\u0646_\u0645\u0627\u0698\u0648\u0644_\u062f\u0648_\u0646\u0642\u0634_\u062f\u0627\u0631\u062f" }, { "relation": "contains", @@ -186158,9 +186189,9 @@ "source_file": "docs/tasks/task-16-representation/implementation_notes.md", "source_location": "L119", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631", - "target": "task_16_representation_implementation_notes_\u06a9\u0634\u06cc\u0646\u06af_\u0622\u0645\u0627\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "confidence_score": 1.0 + "target": "task_16_representation_implementation_notes_\u06a9\u0634\u06cc\u0646\u06af_\u0622\u0645\u0627\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f" }, { "relation": "contains", @@ -186168,9 +186199,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task", - "target": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f" }, { "relation": "contains", @@ -186178,9 +186209,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -186188,9 +186219,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L100", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_post_api_v1_representations_id_bank_accounts", - "confidence_score": 1.0 + "target": "task_16_representation_task_post_api_v1_representations_id_bank_accounts" }, { "relation": "contains", @@ -186198,9 +186229,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_query_params", - "confidence_score": 1.0 + "target": "task_16_representation_task_query_params" }, { "relation": "contains", @@ -186208,9 +186239,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -186218,9 +186249,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -186228,9 +186259,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L147", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_representation_entity", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_representation_entity" }, { "relation": "contains", @@ -186238,9 +186269,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L135", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_bank_account_\u062f\u0631_get_api_v1_representation_uuid", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_bank_account_\u062f\u0631_get_api_v1_representation_uuid" }, { "relation": "contains", @@ -186248,9 +186279,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L41", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627" }, { "relation": "contains", @@ -186258,9 +186289,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u062a\u0633\u06a9_\u06f1\u06f6_\u0645\u0627\u0698\u0648\u0644_representation_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", - "target": "task_16_representation_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_16_representation_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -186268,9 +186299,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_query_params", - "target": "task_16_representation_task_get_api_v1_representation_filter_representationid", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_filter_representationid" }, { "relation": "contains", @@ -186278,9 +186309,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L36", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_query_params", - "target": "task_16_representation_task_get_api_v1_representation_yearly_income_representationid", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_yearly_income_representationid" }, { "relation": "contains", @@ -186288,9 +186319,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L57", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627", - "target": "task_16_representation_task_get_api_v1_representation_filter_id", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_filter_id" }, { "relation": "contains", @@ -186298,9 +186329,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L80", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627", - "target": "task_16_representation_task_get_api_v1_representation_my_appointments_id", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_my_appointments_id" }, { "relation": "contains", @@ -186308,9 +186339,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627", - "target": "task_16_representation_task_get_api_v1_representation_uuid", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_uuid" }, { "relation": "contains", @@ -186318,9 +186349,9 @@ "source_file": "docs/tasks/task-16-representation/task.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_16_representation_task_\u0646\u0645\u0648\u0646\u0647_response_\u0647\u0627", - "target": "task_16_representation_task_get_api_v1_representation_yearly_income_id", - "confidence_score": 1.0 + "target": "task_16_representation_task_get_api_v1_representation_yearly_income_id" }, { "relation": "contains", @@ -186328,9 +186359,9 @@ "source_file": "docs/tasks/task-17-sms/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_database", - "target": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186338,9 +186369,9 @@ "source_file": "docs/tasks/task-17-sms/database.md", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_17_sms_database_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0647\u0627" }, { "relation": "contains", @@ -186348,9 +186379,9 @@ "source_file": "docs/tasks/task-17-sms/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_database_\u062c\u062f\u0648\u0644_sms_accounts_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_database_\u062c\u062f\u0648\u0644_sms_accounts_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186358,9 +186389,9 @@ "source_file": "docs/tasks/task-17-sms/database.md", "source_location": "L17", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_database_\u062c\u062f\u0648\u0644_sms_queue_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_database_\u062c\u062f\u0648\u0644_sms_queue_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186368,9 +186399,9 @@ "source_file": "docs/tasks/task-17-sms/database.md", "source_location": "L40", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_17_sms_database_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -186378,9 +186409,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes", - "target": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186388,9 +186419,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_implementation_notes_api_endpoints", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_api_endpoints" }, { "relation": "contains", @@ -186398,9 +186429,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L52", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_implementation_notes_\u062a\u0634\u062e\u06cc\u0635_owner_\u0627\u0632_jwt_token", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_\u062a\u0634\u062e\u06cc\u0635_owner_\u0627\u0632_jwt_token" }, { "relation": "contains", @@ -186408,9 +186439,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_implementation_notes_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0631_\u0645\u0648\u062c\u0648\u062f\u06cc_atomic", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_\u0645\u0646\u0637\u0642_\u06a9\u0633\u0631_\u0645\u0648\u062c\u0648\u062f\u06cc_atomic" }, { "relation": "contains", @@ -186418,9 +186449,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L65", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_\u0646\u06a9\u0627\u062a_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "target": "task_17_sms_implementation_notes_\u0646\u06a9\u062a\u0647_\u0627\u0631\u0633\u0627\u0644_\u0648\u0627\u0642\u0639\u06cc_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_\u0646\u06a9\u062a\u0647_\u0627\u0631\u0633\u0627\u0644_\u0648\u0627\u0642\u0639\u06cc_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186428,9 +186459,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_api_endpoints", - "target": "task_17_sms_implementation_notes_get_api_v1_sms_balance", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_get_api_v1_sms_balance" }, { "relation": "contains", @@ -186438,9 +186469,9 @@ "source_file": "docs/tasks/task-17-sms/implementation_notes.md", "source_location": "L18", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_implementation_notes_api_endpoints", - "target": "task_17_sms_implementation_notes_post_api_v1_sms_queue", - "confidence_score": 1.0 + "target": "task_17_sms_implementation_notes_post_api_v1_sms_queue" }, { "relation": "contains", @@ -186448,9 +186479,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task", - "target": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms" }, { "relation": "contains", @@ -186458,9 +186489,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L11", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_17_sms_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -186468,9 +186499,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_get_api_v1_sms_balance", - "confidence_score": 1.0 + "target": "task_17_sms_task_get_api_v1_sms_balance" }, { "relation": "contains", @@ -186478,9 +186509,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_post_api_v1_sms_queue", - "confidence_score": 1.0 + "target": "task_17_sms_task_post_api_v1_sms_queue" }, { "relation": "contains", @@ -186488,9 +186519,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L83", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_sms_providers_strategy_pattern", - "confidence_score": 1.0 + "target": "task_17_sms_task_sms_providers_strategy_pattern" }, { "relation": "contains", @@ -186498,9 +186529,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L116", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_symfony_messenger_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_async", - "confidence_score": 1.0 + "target": "task_17_sms_task_symfony_messenger_\u067e\u06cc\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_async" }, { "relation": "contains", @@ -186508,9 +186539,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -186518,9 +186549,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L30", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -186528,9 +186559,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L182", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u062c\u062f\u0648\u0644_sms_logs", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u062c\u062f\u0648\u0644_sms_logs" }, { "relation": "contains", @@ -186538,9 +186569,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L208", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc" }, { "relation": "contains", @@ -186548,9 +186579,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L168", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u0642\u0627\u0646\u0648\u0646_\u06a9\u0633\u0631_\u0645\u0648\u062c\u0648\u062f\u06cc", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0642\u0627\u0646\u0648\u0646_\u06a9\u0633\u0631_\u0645\u0648\u062c\u0648\u062f\u06cc" }, { "relation": "contains", @@ -186558,9 +186589,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L200", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -186568,9 +186599,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L27", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u062a\u0633\u06a9_\u06f1\u06f7_\u0645\u0627\u0698\u0648\u0644_\u067e\u06cc\u0627\u0645\u06a9_sms", - "target": "task_17_sms_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -186578,9 +186609,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_sms_providers_strategy_pattern", - "target": "task_17_sms_task_fallback_logic", - "confidence_score": 1.0 + "target": "task_17_sms_task_fallback_logic" }, { "relation": "contains", @@ -186588,9 +186619,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_get_api_v1_sms_sample_templates", - "confidence_score": 1.0 + "target": "task_17_sms_task_get_api_v1_sms_sample_templates" }, { "relation": "contains", @@ -186598,9 +186629,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L387", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_get_api_v1_sms_templates", - "confidence_score": 1.0 + "target": "task_17_sms_task_get_api_v1_sms_templates" }, { "relation": "contains", @@ -186608,9 +186639,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L345", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_approve_admin", - "confidence_score": 1.0 + "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_approve_admin" }, { "relation": "contains", @@ -186618,9 +186649,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L363", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_reject_admin", - "confidence_score": 1.0 + "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_reject_admin" }, { "relation": "contains", @@ -186628,9 +186659,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L322", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_submit", - "confidence_score": 1.0 + "target": "task_17_sms_task_patch_api_v1_sms_templates_uuid_submit" }, { "relation": "contains", @@ -186638,9 +186669,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L282", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_post_api_v1_sms_templates", - "confidence_score": 1.0 + "target": "task_17_sms_task_post_api_v1_sms_templates" }, { "relation": "contains", @@ -186648,9 +186679,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L447", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_\u062c\u062f\u0648\u0644_sms_templates", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u062c\u062f\u0648\u0644_sms_templates" }, { "relation": "contains", @@ -186658,9 +186689,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L210", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0644\u06cc", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0644\u06cc" }, { "relation": "contains", @@ -186668,9 +186699,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L236", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0627_category", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0627_category" }, { "relation": "contains", @@ -186678,9 +186709,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0648_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0633\u0627\u062e\u062a\u0627\u0631_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0648_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627" }, { "relation": "contains", @@ -186688,9 +186719,9 @@ "source_file": "docs/tasks/task-17-sms/task.md", "source_location": "L418", "weight": 1.0, + "confidence_score": 1.0, "source": "task_17_sms_task_\u0633\u06cc\u0633\u062a\u0645_\u062a\u0645\u067e\u0644\u06cc\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0633\u0641\u0627\u0631\u0634\u06cc", - "target": "task_17_sms_task_\u0645\u0646\u0637\u0642_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9", - "confidence_score": 1.0 + "target": "task_17_sms_task_\u0645\u0646\u0637\u0642_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0646\u06af\u0627\u0645_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9" }, { "relation": "contains", @@ -186698,9 +186729,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database", - "target": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { "relation": "contains", @@ -186708,9 +186739,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L25", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "task_18_settlement_database_\u062c\u062f\u0648\u0644_settlements_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0647\u0627\u06cc_\u062a\u0633\u0648\u06cc\u0647", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u062c\u062f\u0648\u0644_settlements_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0647\u0627\u06cc_\u062a\u0633\u0648\u06cc\u0647" }, { "relation": "contains", @@ -186718,9 +186749,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "task_18_settlement_database_\u062c\u062f\u0648\u0644_wallet_transactions_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u062c\u062f\u0648\u0644_wallet_transactions_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627\u06cc_\u06a9\u06cc\u0641_\u067e\u0648\u0644" }, { "relation": "contains", @@ -186728,9 +186759,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L78", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "task_18_settlement_database_\u0641\u0644\u0648\u06cc_\u062a\u0633\u0648\u06cc\u0647_\u0647\u0646\u06af\u0627\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u0627\u062f\u0645\u06cc\u0646", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u0641\u0644\u0648\u06cc_\u062a\u0633\u0648\u06cc\u0647_\u0647\u0646\u06af\u0627\u0645_\u062a\u0623\u06cc\u06cc\u062f_\u0627\u062f\u0645\u06cc\u0646" }, { "relation": "contains", @@ -186738,9 +186769,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L66", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "task_18_settlement_database_\u0641\u0644\u0648\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0647\u0646\u06af\u0627\u0645_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u0641\u0644\u0648\u06cc_\u0648\u0627\u0631\u06cc\u0632_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0647\u0646\u06af\u0627\u0645_\u067e\u0631\u062f\u0627\u062e\u062a_\u0645\u0648\u0641\u0642" }, { "relation": "contains", @@ -186748,9 +186779,9 @@ "source_file": "docs/tasks/task-18-settlement/database.md", "source_location": "L53", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_database_\u067e\u0627\u06cc\u06af\u0627\u0647_\u062f\u0627\u062f\u0647_\u062a\u0633\u06a9_\u06f1\u06f8_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "target": "task_18_settlement_database_\u0641\u06cc\u0644\u062f_balance_\u062f\u0631_representations", - "confidence_score": 1.0 + "target": "task_18_settlement_database_\u0641\u06cc\u0644\u062f_balance_\u062f\u0631_representations" }, { "relation": "contains", @@ -186758,9 +186789,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L1", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task", - "target": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement" }, { "relation": "contains", @@ -186768,9 +186799,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L19", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_endpoint_\u0647\u0627", - "confidence_score": 1.0 + "target": "task_18_settlement_task_endpoint_\u0647\u0627" }, { "relation": "contains", @@ -186778,9 +186809,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L3", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u062a\u0648\u0636\u06cc\u062d", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u062a\u0648\u0636\u06cc\u062d" }, { "relation": "contains", @@ -186788,9 +186819,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L34", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0632\u0645\u0627\u0646_\u062a\u062e\u0645\u06cc\u0646\u06cc" }, { "relation": "contains", @@ -186798,9 +186829,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0641\u0644\u0648\u06cc_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0627\u0632_\u0645\u0633\u062a\u0646\u062f", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0641\u0644\u0648\u06cc_\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646_\u0627\u0632_\u0645\u0633\u062a\u0646\u062f" }, { "relation": "contains", @@ -186808,9 +186839,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L39", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_request_post_api_v1_representation_id_settlement", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_request_post_api_v1_representation_id_settlement" }, { "relation": "contains", @@ -186818,9 +186849,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_representation_id_wallet", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_representation_id_wallet" }, { "relation": "contains", @@ -186828,9 +186859,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L62", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_representation_id_wallet_transactions", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_representation_id_wallet_transactions" }, { "relation": "contains", @@ -186838,9 +186869,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_settlement_uuid", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0646\u0645\u0648\u0646\u0647_response_get_api_v1_settlement_uuid" }, { "relation": "contains", @@ -186848,9 +186879,9 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645" }, { "relation": "contains", @@ -186858,11 +186889,11 @@ "source_file": "docs/tasks/task-18-settlement/task.md", "source_location": "L31", "weight": 1.0, + "confidence_score": 1.0, "source": "task_18_settlement_task_\u062a\u0633\u06a9_\u06f1\u06f8_\u0645\u0627\u0698\u0648\u0644_\u062a\u0633\u0648\u06cc\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_settlement", - "target": "task_18_settlement_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "task_18_settlement_task_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" } ], "hyperedges": [], - "built_at_commit": "9b608aaeac2c98e43da90bc6fc63dacf09238d35" + "built_at_commit": "c2c6ae4d02249c2c1bec5ae8b85b1af4ed35c65b" } \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json index 7a91ffed..556eff68 100644 --- a/graphify-out/manifest.json +++ b/graphify-out/manifest.json @@ -320,8 +320,8 @@ "semantic_hash": "" }, "assets/admin/pages/RepresentationProfilePage.tsx": { - "mtime": 1782400039.351616, - "ast_hash": "62f7d3f4e80d566903b4747c4e8de6f8", + "mtime": 1782403805.0213432, + "ast_hash": "4b8c8be86258245ecf354c0997d11816", "semantic_hash": "" }, "assets/admin/pages/RepresentationSettlementPage.tsx": { @@ -1500,8 +1500,8 @@ "semantic_hash": "" }, "src/Representation/Controller/RepresentationActionController.php": { - "mtime": 1782399975.0700426, - "ast_hash": "6356e03b1f4219e00d2b310ec8d5b8bf", + "mtime": 1782403671.232173, + "ast_hash": "fd1f1336f0b8498dba4ff5e41e5b95cb", "semantic_hash": "" }, "src/Representation/Controller/RepresentationController.php": { @@ -1635,8 +1635,8 @@ "semantic_hash": "" }, "src/Shared/Service/ApiIrService.php": { - "mtime": 1782399401.6000476, - "ast_hash": "701731c46339ed487b4aee56e1cf215a", + "mtime": 1782403597.5695918, + "ast_hash": "727088b0f129f6841af82a3f616af47b", "semantic_hash": "" }, "src/Shared/Service/FileValidatorService.php": { @@ -2490,8 +2490,8 @@ "semantic_hash": "" }, "docs/api/representation.md": { - "mtime": 1782400506.6737096, - "ast_hash": "1825d1ff09ca1ecefd9e3cf0171cc442", + "mtime": 1782403897.0189605, + "ast_hash": "2f6c84681e5a190839d52a5e95945f31", "semantic_hash": "" }, "docs/api/secretary.md": {