From 5f8a2869a5f8dccbfcfd386c6f66f74502e68967 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Fri, 7 Aug 2026 23:27:01 -0600 Subject: [PATCH] fix: Export these types as they're used in for-web (#182) 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";