From bce08ae3b6362aaa056b3c2bfd5f20cd708479b5 Mon Sep 17 00:00:00 2001 From: jinsu Date: Mon, 8 Dec 2025 23:16:59 +0900 Subject: [PATCH] =?UTF-8?q?listDaily=20=EC=BF=BC=EB=A6=AC=20=EC=A1=B0?= =?UTF-8?q?=EA=B1=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/main.tsp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/api/main.tsp b/api/main.tsp index 4519a27..3ce3881 100644 --- a/api/main.tsp +++ b/api/main.tsp @@ -62,7 +62,16 @@ model Error { interface Forecasts { @get @route("/daily") - listDaily(): { + @doc("일일 날씨 예보 목록을 조회합니다.") + listDaily( + @query + @doc("타임존 (기본값: Asia/Seoul)") + timezone?: string, + + @query + @doc("현재 시간 (기본값: 현재 시간)") + now?: offsetDateTime, + ): { @statusCode statusCode: 200; @body body: DailyForecastList; } | {