🔀 chore(api): rename message property to inputs in sendAllProps type

The message property in the sendAllProps type has been renamed to inputs to better reflect its purpose. This change improves the semantics of the code and makes it easier to understand the purpose of the property.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-27 21:33:06 -03:00
commit 2e09d7026b

View file

@ -31,7 +31,7 @@ export type sendAllProps = {
name: string;
description: string;
viewport: Viewport;
message: any;
inputs: any;
chatHistory: { message: string; isSend: boolean }[];
};