Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions app/dto/resume_dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,12 @@ class ResumeResponseDto(BaseModel):
position: str
techStack: List[str]
aboutMe: str
tags: Optional[List[str]] # null 가능
workExperiences: List[WorkExperience]
# projects: List[ProjectResponse]
tags: Optional[List[str]]
workExperiences: Optional[List[WorkExperience]]
projects: List[Union[ProjectUpdate, StarProjectUpdate, GitfolioProjectUpdate]]
links: Optional[List[Link]] # null 가능
educations: List[Education]
certificates: List[Certificate]
links: Optional[List[Link]]
educations: Optional[List[Education]]
certificates: Optional[List[Certificate]]

class updateResumeDto(BaseModel):
template: str
Expand All @@ -157,11 +156,11 @@ class updateResumeDto(BaseModel):
techStack: List[str]
aboutMe: str
tags: Optional[List[str]] # null 가능
workExperiences: List[WorkExperience]
workExperiences: Optional[List[WorkExperience]]
projects: List[Union[Project, StarProject, GitfolioProject]] # 추가된 필드
links: Optional[List[Link]] # null 가능
educations: List[Education]
certificates: List[Certificate]
educations: Optional[List[Education]]
certificates: Optional[List[Certificate]]

class UpdateRequestDto(BaseModel):
selectedText: str
Expand Down
Loading