From 2a1839f4c5de91d7118677cfcd92f8959fd1b334 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 12 Aug 2026 00:17:08 -0700 Subject: [PATCH] fix(gateway): export portal protocol types --- packages/gateway-protocol/src/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/gateway-protocol/src/index.ts b/packages/gateway-protocol/src/index.ts index 11227e8f2bb4..cd7136d6dfeb 100644 --- a/packages/gateway-protocol/src/index.ts +++ b/packages/gateway-protocol/src/index.ts @@ -52,6 +52,16 @@ export { PortalChangedEventSchema, PortalSummarySchema } from "./schema/portals. export { PortalListParamsSchema, PortalListResultSchema } from "./schema/portals.js"; export { PortalOpenParamsSchema, PortalOpenResultSchema } from "./schema/portals.js"; export { PortalCloseParamsSchema, PortalCloseResultSchema } from "./schema/portals.js"; +export type { + PortalChangedEvent, + PortalCloseParams, + PortalCloseResult, + PortalListParams, + PortalListResult, + PortalOpenParams, + PortalOpenResult, + PortalSummary, +} from "./schema/portals.js"; // Explicit schema exports keep public protocol changes reviewable. export { isCloudWorkerPlacementState,