feat: enhance search functionality to include parent names and related fields across categories
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user