feat(guild-events): add webhook event envelope and message lifecycle emits
This commit is contained in:
9
Fabric.Backend.Guild/src/events/event-envelope.ts
Normal file
9
Fabric.Backend.Guild/src/events/event-envelope.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export type FabricEventEnvelope = {
|
||||
event_id: string;
|
||||
event_type: string;
|
||||
occurred_at: string;
|
||||
guild_id: string | null;
|
||||
channel_id: string | null;
|
||||
actor_id: string | null;
|
||||
data: Record<string, unknown>;
|
||||
};
|
||||
Reference in New Issue
Block a user