109 lines
2.1 KiB
TypeScript
109 lines
2.1 KiB
TypeScript
export type Filter = Record<string, any>;
|
|
|
|
// export type Filter = {
|
|
// themesTagIds: number[];
|
|
// priceFrom?: number | null;
|
|
// priceTo?: number | null;
|
|
// durationFrom?: number | null;
|
|
// durationTo?: number | null;
|
|
// };
|
|
|
|
export type AdditionalFilter = {
|
|
text?: string;
|
|
sort?: string;
|
|
language?: string[];
|
|
};
|
|
|
|
export type Tag = {
|
|
id: number;
|
|
groupId: number;
|
|
name: string
|
|
couchCount?: number;
|
|
group?: string | null;
|
|
};
|
|
|
|
export type File = {
|
|
id: number;
|
|
fileType: string;
|
|
url: string;
|
|
};
|
|
|
|
export interface ExpertDocument {
|
|
fileName: string;
|
|
original?: File;
|
|
preview?: File;
|
|
fullSize?: File;
|
|
}
|
|
|
|
export type Details = {
|
|
id: number;
|
|
userId?:number;
|
|
title?: string;
|
|
description?: string;
|
|
document?: ExpertDocument;
|
|
};
|
|
|
|
export type Certificate = {
|
|
id: number;
|
|
userId?: number;
|
|
associationLevelId?: number;
|
|
document?: ExpertDocument;
|
|
};
|
|
|
|
export type Practice = {
|
|
id: number;
|
|
userId?: number;
|
|
description?: string;
|
|
themesGroupIds?: number[];
|
|
};
|
|
|
|
export type ThemeGroup = {
|
|
id: number;
|
|
name: string;
|
|
isActive?: boolean;
|
|
canDeleted?: boolean;
|
|
};
|
|
|
|
export type Association = {
|
|
id: number;
|
|
name: string;
|
|
};
|
|
|
|
export type AssociationLevel = {
|
|
id: number;
|
|
associationId: number;
|
|
name: string;
|
|
};
|
|
|
|
export interface ExpertItem {
|
|
id: number;
|
|
name: string;
|
|
surname?: string;
|
|
faceImageUrl?: string;
|
|
sessionDuration: number;
|
|
sessionCost: number;
|
|
coachRating?: number;
|
|
tags: Tag[];
|
|
speciality?: string;
|
|
specialityDesc?: string;
|
|
description?: string;
|
|
}
|
|
|
|
export type ExpertsData = ExpertItem[];
|
|
|
|
export type ExpertDetails = {
|
|
publicCoachDetails: ExpertItem & {
|
|
practiceHours?: number;
|
|
supervisionPerYearId?: number;
|
|
educations?: Details[];
|
|
certificates?: Certificate[];
|
|
trainings?: Details[];
|
|
mbas?: Details[];
|
|
experiences?: Details[];
|
|
practiceCases?: Practice[];
|
|
themesGroups?: ThemeGroup[];
|
|
};
|
|
associations?: Association[];
|
|
associationLevels?: AssociationLevel[];
|
|
};
|