From 104224a7eb44fca460b3877ae1a408da2584eb85 Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Thu, 22 Aug 2024 20:29:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E3=83=95=E3=82=A9=E3=83=BC=E3=83=A0?= =?UTF-8?q?=E3=81=AB=E3=81=A4=E3=81=91=E3=82=89=E3=82=8C=E3=82=8B=E3=83=A9?= =?UTF-8?q?=E3=83=99=E3=83=AB=E3=82=92=E7=B7=A8=E9=9B=86=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=82=A8=E3=83=B3=E3=83=89=E3=83=9D=E3=82=A4=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=81=AE=E5=AE=9A=E7=BE=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/endpoints/forms.tsp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/endpoints/forms.tsp b/src/endpoints/forms.tsp index 755f332..e5f02b8 100644 --- a/src/endpoints/forms.tsp +++ b/src/endpoints/forms.tsp @@ -383,5 +383,19 @@ namespace Forms { @statusCode statusCode: 400 | 401 | 403 | 404 | 500; @body body: Error; }; + + @patch + @summary("フォームにつけられるラベルを更新する") + op update( + @body body: { + form_label_id: uint32; + name: string; + }, + ): { + @statusCode statusCode: 200; + } | { + @statusCode statusCode: 400 | 401 | 403 | 404 | 500; + @body body: Error; + }; } }