Stephan Meijer - What was the deal with union a...
What was the deal with union and transform again?
```ts
import { Heading, Paragraph, Text } from '@toegang-voor-iedereen/document-spec-types';
import { v4 as uuidv4 } from 'uuid';...
Whimsy - .optional() makes the type optional? l...
.optional() makes the type optional? like using it with
z.boolean().default(false)
makes it boolean | undefined
Stephan Meijer - How does Zod's transform funct...
How do Zod's transform work with schema's inside other schema's that also have
transform
on them?Solution:
If that’s what you’re asking, inner transforms get run first
CommandMC - z.function().args() seems to forget...
z.function().args()
seems to forget brand
s?
Hello. Using a brand
ed schema as an argument to a Zod function (z.function()
) & then inferring the type of that function doesn't seem to be working correctly, the argument type just reverts to its non-branded type
TS Playground example of my issue...Stephan Meijer - When exporting myschema's and ...
When exporting my schema's as a package and then importing them, I get errors...
...
ESLint: Unsafe member access .parseAsync on an `error` typed value.(@typescript-eslint/no-unsafe-member-access)
ESLint: Unsafe member access .parseAsync on an `error` typed value.(@typescript-eslint/no-unsafe-member-access)
Solution:
The basic issue is that typescript-eslint is getting an error from its own internal typescript compiler message. Usually restarting can help, but if it persists there might be a configuration issue in eslint or in the ide plugin
Whimsy - hey is there a way to tell zod what ki...
hey is there a way to tell zod what kind of schema shape i want from type, instead of opposite infering type from schema?

unreal - Hello, i have this schema tsconst som...
Hello, i have this schema ```ts
const someSchema = z.object({
description: z
.string()
.min(20, 'Min description length is 20')...

Luan Mário - Guys, I need help, I'm using discr...
Guys, I need help, I'm using discriminatedUnion to join the schemas, but I'm not able to pass more than one defaultValues when starting, it's only accepting one
fahad19 - Hi folks 👋 I am using Zod for lint...
Hi folks 👋
I am using Zod for linting functionality in an open source project of mine: https://featurevisor.com/docs/linting/
one of the use cases I have hit is being able to access the parent/root object when inside .superRefine() of a nested object. I tried reading the docs, and couldn't figure out if it is possible....
Solution:
I tackled the problem by doing superRefine() at root: https://github.com/featurevisor/featurevisor/pull/320
EagleV - hi, how can I test zod z.date() using ...
hi, how can I test zod z.date() using postman? I've tried to pass a ISO date like
2024-08-01T12:00:00Z
but it's not workingSolution:
you can use
z.coerce.date()
zod will parse your input to Date
https://zod.dev/?id=coercion-for-primitives...angrybacon - Hello 👋 apologies in advance if I...
Hello 👋 apologies in advance if I missed it in the issues or documentation
Are named tuple members a thing in Zod?
...
type Range = [left: number, right: number];
type Range = [left: number, right: number];
Solution:
https://zod.dev/?id=tuples
I'm guessing to add names, you might need to pass a generic type to
z.tuple
. Alternatively you could use a refine, something like this (haven't checked the syntax, so could be slightly off):
```ts...