Merge branch 'dev/methapon' into develop
This commit is contained in:
commit
3a41f03381
6 changed files with 8 additions and 21 deletions
|
|
@ -108,7 +108,6 @@ export class CreateProfileAssessment {
|
|||
}
|
||||
|
||||
export type UpdateProfileAssessment = {
|
||||
profileId?: string | null;
|
||||
isActive?: boolean;
|
||||
name?: string | null;
|
||||
date?: Date | null;
|
||||
|
|
|
|||
|
|
@ -69,28 +69,20 @@ export class ProfileCertificate extends EntityBase {
|
|||
}
|
||||
|
||||
export class CreateProfileCertificate {
|
||||
|
||||
@Column("uuid")
|
||||
profileId: string | null;
|
||||
|
||||
@Column()
|
||||
expireDate: Date | null;
|
||||
|
||||
@Column()
|
||||
isActive: boolean;
|
||||
|
||||
@Column()
|
||||
issueDate: Date | null;
|
||||
|
||||
@Column()
|
||||
certificateNo: string | null;
|
||||
|
||||
@Column()
|
||||
certificateType: string | null;
|
||||
|
||||
@Column()
|
||||
issuer: string | null;
|
||||
|
||||
}
|
||||
|
||||
export type UpdateProfileCertificate = Partial<CreateProfileCertificate>;
|
||||
export type UpdateProfileCertificate = {
|
||||
expireDate?: Date | null;
|
||||
isActive?: boolean;
|
||||
issueDate?: Date | null;
|
||||
certificateNo?: string | null;
|
||||
certificateType?: string | null;
|
||||
issuer?: string | null;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -88,7 +88,6 @@ export class CreateProfileChangeName {
|
|||
}
|
||||
|
||||
export type UpdateProfileChangeName = {
|
||||
profileId?: string | null;
|
||||
isActive?: boolean;
|
||||
prefixId?: string | null;
|
||||
prefix?: string | null;
|
||||
|
|
|
|||
|
|
@ -90,7 +90,6 @@ export class CreateProfileDiscipline {
|
|||
|
||||
export type UpdateProfileDiscipline = {
|
||||
date?: Date | null;
|
||||
profileId?: string;
|
||||
isActive?: boolean | null;
|
||||
level?: string | null;
|
||||
detail?: string | null;
|
||||
|
|
|
|||
|
|
@ -201,7 +201,6 @@ export class CreateProfileEducation {
|
|||
}
|
||||
|
||||
export type UpdateProfileEducation = {
|
||||
profileId?: string | null;
|
||||
isActive?: boolean;
|
||||
country?: string | null;
|
||||
degree?: string | null;
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ export class CreateProfileHonor {
|
|||
}
|
||||
|
||||
export type UpdateProfileHonor = {
|
||||
profileId?: string | null;
|
||||
isActive?: boolean;
|
||||
detail?: string | null;
|
||||
issueDate?: Date | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue