diff --git a/package.json b/package.json index 20a8aef..1329827 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@themoment-team/datagsm-openapi", - "version": "1.1.0", + "version": "1.2.0", "description": "Official JavaScript/TypeScript SDK for DataGSM OpenAPI", "license": "MIT", "author": "themoment-team", diff --git a/src/types/projects.ts b/src/types/projects.ts index ab6a4c4..bcdbd0f 100644 --- a/src/types/projects.ts +++ b/src/types/projects.ts @@ -9,6 +9,13 @@ export interface Project { description: string; club?: ClubSummary; participants: ParticipantInfo[]; + startYear: number; + endYear?: number; + status: ProjectStatus; + /** Max 20 items, each up to 300 characters. */ + repositories: string[]; + /** Max 20 items, each up to 50 characters. */ + techStacks: string[]; } export interface GetProjectsRequest {