File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @zod/zod" ,
3- "version" : " 4.3.2 " ,
3+ "version" : " 4.3.3 " ,
44 "exports" : {
55 "./package.json" : " ./package.json" ,
66 "." : " ./src/index.ts" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " zod" ,
3- "version" : " 4.3.2 " ,
3+ "version" : " 4.3.3 " ,
44 "type" : " module" ,
55 "license" : " MIT" ,
66 "author" : " Colin McDonnell <zod@colinhacks.com>" ,
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export interface ZodType<
9292 refine < Ch extends ( arg : core . output < this> ) => unknown | Promise < unknown > > (
9393 check : Ch ,
9494 params ?: string | core . $ZodCustomParams
95- ) : Ch extends ( arg : any ) => arg is infer R ? core . $ZodNarrow < this, R > : this;
95+ ) : Ch extends ( arg : any ) => arg is infer R ? this & ZodType < R , core . input < this> > : this;
9696 superRefine (
9797 refinement : ( arg : core . output < this> , ctx : core . $RefinementCtx < core . output < this> > ) => void | Promise < void >
9898 ) : this;
Original file line number Diff line number Diff line change 11export const version = {
22 major : 4 ,
33 minor : 3 ,
4- patch : 2 as number ,
4+ patch : 3 as number ,
55} as const ;
You can’t perform that action at this time.
0 commit comments