feat(guild-events): add webhook event envelope and message lifecycle emits

This commit is contained in:
nav
2026-05-12 11:24:43 +00:00
parent 8ca5d68ba4
commit 37ec670280
6 changed files with 114 additions and 2 deletions

View 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>;
};