From e095c0f43ba19ba5d5e0befd9f12f930603ba5fd Mon Sep 17 00:00:00 2001 From: zaman Date: Tue, 15 Sep 2026 16:02:43 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20Project=20=ED=83=80=EC=9E=85?= =?UTF-8?q?=EC=97=90=20startYear,=20endYear,=20status,=20repositories,=20t?= =?UTF-8?q?echStacks=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 서버 ProjectResDto와 동기화 (datagsm-server#426, #430 대응) Closes #5 --- src/types/projects.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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 { From fa285e20720af0681ead9025e930815376f481f9 Mon Sep 17 00:00:00 2001 From: zaman Date: Tue, 15 Sep 2026 16:15:27 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=ED=8C=A8=ED=82=A4=EC=A7=80=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=EC=9D=84=201.1.0=EC=97=90=EC=84=9C=201.2.0?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",