Conversation
datagsm-server PR #430에서 Project에 추가된 repositories(리포지토리 URL 목록), techStacks(기술 스택 목록) 필드를 SDK Project 모델에 반영. 두 필드 모두 default_factory=list로 하위 호환 유지. Closes #7
Collaborator
Author
|
브랜치명을 팀 컨벤션에 맞춰 add/project-repositories-tech-stacks-field로 변경하여 새 PR로 재생성합니다. |
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(기술 스택 목록) 필드가 추가됨에 따라 Python SDK 모델을 동기화합니다. (관련 이슈: datagsm-server#426)변경사항
src/datagsm_openapi/models/project.pyProject모델에repositories: list[str]필드 추가Project모델에tech_stacks: list[str]필드 추가 (서버 응답 필드명:techStacks)default_factory=list로 하위 호환 유지 (서버 기본값이 빈 리스트)1.2.0→1.3.0업데이트참고
repositories는 최대 20개, 각 URL 최대 300자 /techStacks는 최대 20개, 각 항목 최대 50자 (SDK 레벨 검증은 서버에 위임)Closes #7