feat: complete family history endpoint

This commit is contained in:
Methapon2001 2024-03-19 19:45:41 +07:00
parent 5a63ac36bd
commit 88b567070a
2 changed files with 38 additions and 7 deletions

View file

@ -261,7 +261,7 @@ export class ProfileChildrenHistory extends ProfileChildren {
profileChildren: ProfileChildren;
}
type CreateChildren = {
export type CreateChildren = {
isActive: boolean;
childrenCareer: string;
childrenFirstName: string;
@ -271,7 +271,7 @@ type CreateChildren = {
childrenCitizenId: string;
};
type UpdateChildren = {
export type UpdateChildren = {
id: string;
isActive?: boolean | null;
childrenCareer?: string | null;