feat: enhance search functionality to include parent names and related fields across categories

This commit is contained in:
hamed
2026-08-08 14:57:36 +03:30
parent 35181cd715
commit d74a351e5a
11 changed files with 250 additions and 21 deletions
+5
View File
@@ -397,6 +397,7 @@ export interface City {
status: number;
weight: number;
province_id: number | null;
province_name?: string | null;
representation_id?: number | null;
contact_phone?: string | null;
email?: string | null;
@@ -417,6 +418,8 @@ export interface SpecialtyFull {
status: number;
weight: number;
parent_id: number | null;
/** فقط در لیست ادمین برمی‌گردد. */
parent_name?: string | null;
}
export interface DoctorService {
@@ -427,6 +430,8 @@ export interface DoctorService {
status: number;
weight: number;
specialty_id: number | null;
/** فقط در لیست ادمین برمی‌گردد. */
specialty_name?: string | null;
}
export interface Insurance {