mbus-backend
    Preparing search index...

    Interface ReflectionInfoRawInternal

    interface ReflectionInfoRaw {
        routers: { route: string; router: Router }[];
        routes: (
            {
                description: string;
                params: Record<string, z.ZodType>;
                pathSuffix: string;
                query: Record<string, z.ZodType>;
                resBody:
                    | ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
                    | null;
                router: Router;
                summary: string;
            } & (
                | { method: "get" }
                | {
                    method: "post";
                    reqBody:
                        | ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
                        | null;
                }
            )
        )[];
    }
    Index
    routers: { route: string; router: Router }[]
    routes: (
        {
            description: string;
            params: Record<string, z.ZodType>;
            pathSuffix: string;
            query: Record<string, z.ZodType>;
            resBody:
                | ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
                | null;
            router: Router;
            summary: string;
        } & (
            | { method: "get" }
            | {
                method: "post";
                reqBody:
                    | ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
                    | null;
            }
        )
    )[]

    full routes along with req+res schemas, routes are incomplete until info is finalized