Spaces:
Running
Running
File size: 329 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { ZodTypeAny } from "zod";
import type { ChannelConfigSchema } from "./types.plugin.js";
export function buildChannelConfigSchema(schema: ZodTypeAny): ChannelConfigSchema {
return {
schema: schema.toJSONSchema({
target: "draft-07",
unrepresentable: "any",
}) as Record<string, unknown>,
};
}
|