Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: colinhacks/zod
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.23.0
Choose a base ref
...
head repository: colinhacks/zod
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.23.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 22, 2024

  1. Copy the full SHA
    59f4872 View commit details
  2. 3.23.1

    colinhacks committed Apr 22, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2ff5ceb View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 deno/lib/types.ts
  2. +1 −1 package.json
  3. +2 −2 src/types.ts
4 changes: 2 additions & 2 deletions deno/lib/types.ts
Original file line number Diff line number Diff line change
@@ -166,9 +166,9 @@ export type SafeParseReturnType<Input, Output> =
| SafeParseError<Input>;

export abstract class ZodType<
Output = unknown,
Output = any,
Def extends ZodTypeDef = ZodTypeDef,
Input = unknown
Input = any
> {
readonly _type!: Output;
readonly _output!: Output;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zod",
"version": "3.23.0",
"version": "3.23.1",
"author": "Colin McDonnell <colin@colinhacks.com>",
"repository": {
"type": "git",
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -166,9 +166,9 @@ export type SafeParseReturnType<Input, Output> =
| SafeParseError<Input>;

export abstract class ZodType<
Output = unknown,
Output = any,
Def extends ZodTypeDef = ZodTypeDef,
Input = unknown
Input = any
> {
readonly _type!: Output;
readonly _output!: Output;