Conversation
…s 필드 추가 서버 ProjectResDto와 동기화 (datagsm-server#426, #430 대응) Closes #5
startYear, endYear, status, repositories, techStacks 필드 반영
startYear, endYear, status, repositories, techStacks 필드 반영startYear, endYear, status, repositories, techStacks 필드 반영
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
개요 💡
datagsm-server에서 PR #430을 통해Project에repositories(리포지토리 URL 목록),techStacks(기술 스택 목록) 필드가 추가되었습니다 (관련 이슈: datagsm-server#426).이 SDK의
src/types/projects.ts에 정의된Project타입은 서버 응답을 수동으로 미러링하고 있는데, 위 필드는 물론 그 이전부터startYear,endYear,status필드도 누락되어 있었습니다. 이번 PR은Project인터페이스를 서버ProjectResDto와 동기화하는 것이 목적입니다.작업내용 ⌨️
Project인터페이스에startYear,endYear,status필드 추가Project인터페이스에repositories,techStacks필드 추가repositories: 최대 20개, 각 URL 최대 300자 (서버 측 제약, JSDoc으로 명시)techStacks: 최대 20개, 각 항목 최대 50자 (서버 측 제약, JSDoc으로 명시)ProjectStatus는 기존에 타입 파일 내 정의되어 있던 것을 재사용Closes #5