We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d295a commit 21ec6d6Copy full SHA for 21ec6d6
packages/convex-helpers/server/zod3.ts
@@ -1290,9 +1290,7 @@ export function zodOutputToConvex<Z extends z.ZodTypeAny>(
1290
zod._def.innerType,
1291
) as unknown as ConvexValidatorFromZodOutput<Z>;
1292
case "ZodEffects":
1293
- console.warn(
1294
- "Note: ZodEffects (like z.transform) do not do output validation",
1295
- );
+ // IMPORTANT: Note: ZodEffects (like z.transform) do not do output validation
1296
return v.any() as ConvexValidatorFromZodOutput<Z>;
1297
case "ZodPipeline":
1298
// IMPORTANT: The output type of the pipeline can differ from the input.
0 commit comments