From 0f2278a1d0fa81d2f02d3a2ee4d39c3031a11e02 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Fri, 7 Aug 2026 23:24:14 -0600 Subject: [PATCH] fix: Export these types as they're used in for-web Signed-off-by: Jacob Schlecht --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 6eab7f1f..ab0bdb67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,7 @@ export type { ClientOptions, Session as PrivateSession } from "./Client.js"; export * from "./classes/index.js"; export * from "./collections/index.js"; export { ConnectionState, EventClient } from "./events/EventClient.js"; +export { ProtocolV1 } from "./events/v1.js"; export { BotFlags } from "./hydration/bot.js"; export { ServerFlags } from "./hydration/server.js"; export { UserBadges, UserFlags } from "./hydration/user.js";