Skip to content

Commit

Permalink
3.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed Feb 8, 2023
1 parent 06c237c commit c8ce27e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno/lib/types.ts
Expand Up @@ -1951,7 +1951,7 @@ function deepPartialify(schema: ZodTypeAny): any {

export class ZodObject<
T extends ZodRawShape,
UnknownKeys extends UnknownKeysParam,
UnknownKeys extends UnknownKeysParam = UnknownKeysParam,
Catchall extends ZodTypeAny = ZodTypeAny,
Output = objectOutputType<T, Catchall>,
Input = objectInputType<T, Catchall>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "zod",
"version": "3.20.3",
"version": "3.20.4",
"description": "TypeScript-first schema declaration and validation library with static type inference",
"main": "./lib/index.js",
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Expand Up @@ -1951,7 +1951,7 @@ function deepPartialify(schema: ZodTypeAny): any {

export class ZodObject<
T extends ZodRawShape,
UnknownKeys extends UnknownKeysParam,
UnknownKeys extends UnknownKeysParam = UnknownKeysParam,
Catchall extends ZodTypeAny = ZodTypeAny,
Output = objectOutputType<T, Catchall>,
Input = objectInputType<T, Catchall>
Expand Down

0 comments on commit c8ce27e

Please sign in to comment.