add openapi transport type constant

This commit is contained in:
Ishaan Jaffer 2026-02-19 12:14:13 -08:00
parent 8f2166d204
commit 9edd66855f

View file

@ -22,6 +22,7 @@ export const TRANSPORT = {
SSE: "sse",
HTTP: "http",
STDIO: "stdio",
OPENAPI: "openapi",
};
export const handleTransport = (transport?: string | null): string => {