From e3ad253dcaeb184e64147d1f4ecbd4e06b4c7834 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Fri, 31 Aug 2018 09:44:29 -0600 Subject: [PATCH] A sender is also required for the invite_state --- api/client-server/sync.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/client-server/sync.yaml b/api/client-server/sync.yaml index 9422abb4..bb514bbe 100644 --- a/api/client-server/sync.yaml +++ b/api/client-server/sync.yaml @@ -206,7 +206,9 @@ paths: events: description: The StrippedState events that form the invite state. items: - description: 'A stripped down state event, with only the ``type``, ``state_key`` and ``content`` keys.' + description: |- + A stripped down state event, with only the ``type``, ``state_key``, + ``sender``, and ``content`` keys. properties: content: description: The ``content`` for the event. @@ -218,10 +220,14 @@ paths: type: description: The ``type`` for the event. type: string + sender: + description: The ``sender`` for the event. + type: string required: - type - state_key - content + - sender title: StrippedState type: object type: array