Add idempotent_id to chat and threads services (#64)

* Add idempotent_id to chat and threads services

* Rename
This commit is contained in:
ben-toogood
2021-02-05 11:22:48 +00:00
committed by GitHub
parent b850b61085
commit 2c53892bc6
9 changed files with 235 additions and 156 deletions

View File

@@ -39,9 +39,10 @@ message CreateChatResponse {
}
message CreateMessageRequest {
string chat_id = 1;
string author_id = 2;
string text = 3;
string id = 1;
string chat_id = 2;
string author_id = 3;
string text = 4;
}
message CreateMessageResponse {