temporal-zod
v0.6.3
Published
Zod validators for Temporal types.
Readme
temporal-zod
Zod validators for Temporal types.
This depends on the temporal-polyfill package.
Usage
This library exports two Zod validators for each Temporal type: one with type coercion and one without.
Strings are coerced to the appropriate Temporal type, and for the Instant type, Date objects are also coerced to Instant objects.
zPlainDate/zPlainDateInstance- A Zod validator for thePlainDatetype.zPlainTime/zPlainTimeInstance- A Zod validator for thePlainTimetype.zPlainDateTime/zPlainDateTimeInstance- A Zod validator for thePlainDateTimetype.zPlainYearMonth/zPlainYearMonthInstance- A Zod validator for thePlainYearMonthtype.zPlainMonthDay/zPlainMonthDayInstance- A Zod validator for thePlainMonthDaytype.zDuration/zDurationInstance- A Zod validator for theDurationtype.zInstant/zInstantInstance- A Zod validator for theInstanttype. This also coercesDateobjects toInstantobjects.zZonedDateTime/zZonedDateTimeInstance- A Zod validator for theZonedDateTimetype.
Example
import * as z from "zod";
import { zZonedDateTime } from "temporal-zod";
const schema = z.object({
zonedDateTime: zZonedDateTime,
});
const input = {
zonedDateTime: "2023-05-15T13:45:30+08:00[Asia/Manila]",
};
const result = schema.parse(input);
// result.zonedDateTime is a ZonedDateTime objectYou may view the tests for more examples.
JSON Schema Support
The default temporal-zod export registers JSON Schema metadata on every validator via Zod's .meta(), so z.toJSONSchema() works out of the box:
import * as z from "zod";
import { zPlainDate, zInstant } from "temporal-zod";
const schema = z.object({
date: zPlainDate,
instant: zInstant,
});
const jsonSchema = z.toJSONSchema(schema);
// Produces a JSON Schema with $defs for Temporal.PlainDate, Temporal.Instant,
// including type, description, pattern, and format where applicable.Base Export (No JSON Schema)
If you don't need JSON Schema support, you can import from temporal-zod/base for a smaller bundle. This gives you the same validators without the JSON Schema metadata registration side effect:
import { zPlainDate, zInstant } from "temporal-zod/base";This is backwards-compatible with the pre-JSON Schema versions of temporal-zod.
With tRPC
If you are using tRPC, you likely use Zod to validate your inputs and outputs. However, when using it with Tanstack Query, since the Temporal types get mapped to an object, you should ensure that you are using the instance of the Temporal type rather than the one with type coercion. Otherwise, the query cache will not work as expected.
To do this, use the instance matcher of the Temporal type rather than the one with type coercion.
That is:
// wrong
const procedure = myProcedure.input(
z.object({
plainDate: zPlainDate,
}),
);
// correct
const procedure = myProcedure.input(
z.object({
plainDate: zPlainDateInstance,
}),
);License
Apache-2.0
