How to set an error message

Hey guys, I am trying to move this zod schema with arktype:
const userZodSchema = z.object({
name: z
.string({
required_error: "name is required",
invalid_type_error: "name must of type string",
})
.trim()
.min(3, "name must be at least 3 characters")
.max(255, "name must be at most 255 characters"),
});
const userZodSchema = z.object({
name: z
.string({
required_error: "name is required",
invalid_type_error: "name must of type string",
})
.trim()
.min(3, "name must be at least 3 characters")
.max(255, "name must be at most 255 characters"),
});
so far I have come up with this, but how would I set the error message ?:
const userArktypeSchema = type({
name: '0<string.trim.preformatted<255'
});
const userArktypeSchema = type({
name: '0<string.trim.preformatted<255'
});
here is a typescript playground: https://www.typescriptlang.org/play/?ssl=15&ssc=1&pln=19&pc=1#code/JYWwDg9gTgLgBAbxgTzAUwL5wGZQiOAcgEMoBrFdQgbgChRJZEAvLXfI5iAExttoDGEAHYBneAFdRaKAC0eAZQEALNCGJwAvHGYA6CACMAVmgEwAFAlpw4w4iDQAuHdZtxd4qMGEBzS67c4KDQARwlgYO4AfRk8KGcAIjsHOGBRINDwyISAGgC3bwA3YgAbYGjKNBioOMTktDgQKXgIbDhKuE9vH1z8jABKfN0YLxBzQcDdEG9zAGYcuCT7BqbxOAMG4ngStGI12bgVUmIzGVEEibcp4gAPcwAmAFZHhaWU1fgNuC3GiDWnx6HZTHU5Qc79PIDOiCERrKQyACC5EqSlU6i07VQaH8NnqzkIAAYADxdXzDUa6MDBbDQdQwGBobhEgGEWgDfgcoA
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
2 Replies
teddythinh
teddythinh2w ago
Hi bro @thibault, I think you can change with 3<string.trim.preformatted<255. Arktype automatically return the error for you.
thibault
thibaultOP2w ago
Yeah Also for the record, I fixed this thanks to ArkDavid: https://discord.com/channels/957797212103016458/957804102685982740/1351597961381154869

Did you find this page helpful?