Sergey
Sergey
I do agree with you about "that's actually the whole idea", so probably it's just our case is quite specific. We have some legacy blocks in responses, and one of...
Would be nice to have such `deepStrict: true` option to cover cases, when extra keys are not welcomed. Not only it would allow to define more clear schemas - without...
As per received feedback - changed to `.deepStrict()` method in [newly opened PR](https://github.com/colinhacks/zod/pull/1467) ```typescript const person = z .object({ name: z.string(), meta: z.object({ born: z.string(), }), }) .deepStrict(); person.parse({ name:...
We can temporarily disable source map generation for `html-to-image`, see https://github.com/bubkoo/html-to-image/issues/142#issuecomment-1120583566
@jdalton, we appreciate what you do a lot, but we really need help. Any chance someone will look into this issue some day? When we need to debug our code,...
Try something like this ```typescript /************ Creating Schema via factory function ************/ (() => { function createSchema< BaseSchema extends z.AnyZodObject, ExtentionSchema extends z.AnyZodObject >( baseSchema: BaseSchema, extentionSchema: ExtentionSchema ): z.ZodObject<...
Thanks for your PR @diogob 👍 Are there any plans to someday add support for materialized views as well?