@mindly/ui-components 7.0.9 → 7.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/types/specialistTypes.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/user.d.ts +1 -0
- package/dist/cjs/lib2/shared/utils/matching.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/types/specialistTypes.d.ts +1 -0
- package/dist/esm/lib2/shared/types/user.d.ts +1 -0
- package/dist/esm/lib2/shared/utils/matching.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,4 +4,5 @@ import { Specialist, UserType } from '../types';
|
|
|
4
4
|
export declare const getMatchingValues: (specialist: Specialist, user?: UserType, join?: boolean, t?: WithTranslation['t']) => {
|
|
5
5
|
matchingByAreas: SpecialistAreaByMatch[];
|
|
6
6
|
matchingBySpecialization: SpecialistAreaByMatch[];
|
|
7
|
+
matchingByClientProblem: SpecialistAreaByMatch[];
|
|
7
8
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -970,6 +970,7 @@ type SpecialistOrderType = {
|
|
|
970
970
|
match: number;
|
|
971
971
|
matching_by_areas?: string[];
|
|
972
972
|
matching_by_specialization?: string[];
|
|
973
|
+
matching_by_client_problem?: string[];
|
|
973
974
|
};
|
|
974
975
|
type UserType = {
|
|
975
976
|
id?: string | undefined;
|
|
@@ -1079,6 +1080,7 @@ type Specialist = {
|
|
|
1079
1080
|
activated_at?: number;
|
|
1080
1081
|
matching_by_areas?: string[];
|
|
1081
1082
|
matching_by_specialization?: string[];
|
|
1083
|
+
matching_by_client_problem?: string[];
|
|
1082
1084
|
available_schedule?: Schedule;
|
|
1083
1085
|
};
|
|
1084
1086
|
|