Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop

This commit is contained in:
kittapath 2024-10-31 21:02:58 +07:00
commit 8b86a6120c
3 changed files with 253 additions and 1 deletions

View file

@ -747,6 +747,51 @@ export type UpdateProfile = {
relationship?: string | null;
bloodGroup?: string | null;
};
export type UpdateProfileReqEdit = {
rank?: string | null;
prefix?: string | null;
firstName?: string | null;
lastName?: string | null;
birthDate?: Date | null;
ethnicity?: string | null;
telephoneNumber?: string | null;
nationality?: string | null;
religion?: string | null;
gender?: string | null;
relationship?: string | null;
bloodGroup?: string | null;
registrationAddress?: string | null;
registrationProvinceId?: string | null;
registrationDistrictId?: string | null;
registrationSubDistrictId?: string | null;
registrationZipCode?: string | null;
};
export type UpdateProfileFather = {
fatherPrefix?: string | null;
fatherFirstName?: string | null;
fatherLastName?: string | null;
fatherCareer?: string | null;
fatherLive?: boolean | null;
};
export type UpdateProfileMother = {
motherPrefix?: string | null;
motherFirstName?: string | null;
motherLastName?: string | null;
motherCareer?: string | null;
motherLive?: boolean | null;
};
export type UpdateProfileCouple = {
couplePrefix?: string | null;
coupleFirstName?: string | null;
coupleLastName?: string | null;
coupleLastNameOld?: string | null;
coupleCareer?: string | null;
coupleLive?: boolean | null;
relationship?: string | null;
};
export type UpdateProfileAddress = {
registrationAddress?: string | null;