events-backend: fix schema and response shape

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-05-26 17:56:43 +02:00
parent f13bd3e987
commit 1154a730f6
4 changed files with 10 additions and 5 deletions
@@ -20,5 +20,5 @@
import { Event } from '../models/Event.model';
export interface GetSubscriptionEvents200Response {
events?: Array<Event>;
events: Array<Event>;
}