Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "datagsm-openapi-sdk"
version = "1.2.0"
version = "1.3.0"
description = "Python SDK for DataGSM OpenAPI"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion src/datagsm_openapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
ValidationException,
)

__version__ = "1.2.0"
__version__ = "1.3.0"

__all__ = [
"BadRequestException",
Expand Down
8 changes: 8 additions & 0 deletions src/datagsm_openapi/models/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class Project(BaseModel):
start_year: Year the project started
end_year: Year the project ended (None if still active)
status: Project operation status (ACTIVE or ENDED)
repositories: List of project repository URLs
tech_stacks: List of project tech stacks
"""

id: int = Field(..., description="Project ID")
Expand All @@ -60,6 +62,12 @@ class Project(BaseModel):
None, alias="endYear", description="Year the project ended"
)
status: ProjectStatus = Field(..., description="Project operation status")
repositories: list[str] = Field(
default_factory=list, description="Project repository URLs"
)
tech_stacks: list[str] = Field(
default_factory=list, alias="techStacks", description="Project tech stacks"
)

model_config = ConfigDict(populate_by_name=True)

Expand Down
Loading