aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/types.ts b/src/types.ts
index 941bbbb..e41223c 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -9,13 +9,14 @@ export interface User extends Base {
}
export interface EventContext {
+ name: string;
participants: string[];
conferenceId: string;
attendanceId: string;
}
export interface Event extends Base {
- name: string;
+ type: string;
schedule: string;
status?: 'running' | 'complete' | 'failed' | 'notStarted';
failReason?: string;