From 2e09d7026b1d3b21f4d527b8417382e352b0e91c Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 27 Jun 2023 21:33:06 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20chore(api):=20rename=20message?= =?UTF-8?q?=20property=20to=20inputs=20in=20sendAllProps=20type=20The=20me?= =?UTF-8?q?ssage=20property=20in=20the=20sendAllProps=20type=20has=20been?= =?UTF-8?q?=20renamed=20to=20inputs=20to=20better=20reflect=20its=20purpos?= =?UTF-8?q?e.=20This=20change=20improves=20the=20semantics=20of=20the=20co?= =?UTF-8?q?de=20and=20makes=20it=20easier=20to=20understand=20the=20purpos?= =?UTF-8?q?e=20of=20the=20property.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/types/api/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/types/api/index.ts b/src/frontend/src/types/api/index.ts index d47663d18..7fc10f309 100644 --- a/src/frontend/src/types/api/index.ts +++ b/src/frontend/src/types/api/index.ts @@ -31,7 +31,7 @@ export type sendAllProps = { name: string; description: string; viewport: Viewport; - message: any; + inputs: any; chatHistory: { message: string; isSend: boolean }[]; };