events-backend: update schema

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-05-25 15:34:54 +02:00
parent cd243f994f
commit 2e2fc18dcc
3 changed files with 9 additions and 18 deletions
@@ -23,5 +23,8 @@ export interface Event {
* The topic that the event is published on
*/
topic: string;
payload: { [key: string]: any };
/**
* The event payload
*/
payload: any | null;
}