change endPoint

This commit is contained in:
Bright 2024-06-21 17:56:31 +07:00
parent 5ca15d5433
commit 5812f9e56d
3 changed files with 75 additions and 6 deletions

View file

@ -86,12 +86,12 @@ export class ProfileChildren extends EntityBase {
export type CreateProfileChildren = {
profileId: string;
childrenCareer: string;
childrenFirstName: string;
childrenLastName: string;
childrenPrefix: string;
childrenLive: boolean;
childrenCitizenId: string;
childrenCareer: string | null;
childrenFirstName: string | null;
childrenLastName: string | null;
childrenPrefix: string | null;
childrenLive: boolean | null;
childrenCitizenId: string | null;
};
export type CreateProfileChildrenEmployee = {