diff --git a/docs/api/channel.md b/docs/api/channel.md index a9111ae..59e7c87 100644 --- a/docs/api/channel.md +++ b/docs/api/channel.md @@ -100,6 +100,7 @@ Returns messages for a channel with id = {id} { "id": "string", "text": "string", + "iv": "string", "edited": "boolean", "ownerId": "string", "creationDate": "number" diff --git a/docs/api/message.md b/docs/api/message.md index 23f9ffe..a4482b9 100644 --- a/docs/api/message.md +++ b/docs/api/message.md @@ -10,6 +10,7 @@ Returns a message with id = {id} { "id": "string", "text": "string", + "iv": "string", "editHistory": "string[]", "edited": "boolean", "ownerId": "string", @@ -27,6 +28,7 @@ _Requires an authorization header_ ```json { "text": "string", + "iv": "string", "channelId": "string" } ``` @@ -39,6 +41,7 @@ Creates a new message and returns it { "id": "string", "text": "string", + "iv": "string", "editHistory": "string[]", "edited": "boolean", "ownerId": "string", @@ -67,6 +70,7 @@ Updates a message with id = {id} { "id": "string", "text": "string", + "iv": "string", "editHistory": "string[]", "edited": "boolean", "ownerId": "string",