sometimes the configured `typesPrefix` is missing which leads to typescript error. ```ts export function xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgsSchema(): z.ZodObject< Properties<xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgs> > { return z.object({ limit: z.number().nullish(), offset: z.number().nullish(), }); } ``` instead of ```ts export function xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgsSchema(): z.ZodObject< Properties<IxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgs> > { return z.object({ limit: z.number().nullish(), offset: z.number().nullish(), }); } ```