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

@@ -84,9 +84,10 @@ message DeleteConversationRequest {
message DeleteConversationResponse {}
message CreateMessageRequest {
string conversation_id = 1;
string author_id = 2;
string text = 3;
string id = 1;
string conversation_id = 2;
string author_id = 3;
string text = 4;
}
message CreateMessageResponse {