1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts
index 5a039e9b..6971a61a 100644
--- a/src/util/interfaces/Event.ts
+++ b/src/util/interfaces/Event.ts
@@ -36,6 +36,7 @@ import {
ReadyPrivateChannel,
GuildOrUnavailable,
Snowflake,
+ ThreadMember,
} from "@spacebar/util";
import { JsonValue } from "@protobuf-ts/runtime";
import {
@@ -49,11 +50,11 @@ import {
RelationshipType,
UserPrivate,
} from "@spacebar/schemas";
-import { ThreadMember } from "../entities/ThreadMember";
export interface Event {
guild_id?: string;
user_id?: string;
+ session_id?: string;
channel_id?: string;
created_at?: Date;
event: EVENT;
|