@plyaz/types 1.37.3 → 1.37.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -268,8 +268,8 @@ var SignupFormSchema = z.object({
268
268
  password: z.string({ error: "errors.form.missingField" }).min(DEFAULT_PASSWORD, "errors.form.passwordTooShort")
269
269
  });
270
270
  var AuthFormSchema = z.object({
271
- email: z.string().email({ message: "auth.errors.emailInvalid" }),
272
- password: z.string().min(DEFAULT_PASSWORD, { message: "auth.errors.passwordTooShort" }),
271
+ email: z.string().email({ message: "errors.auth.emailInvalid" }),
272
+ password: z.string().min(DEFAULT_PASSWORD, { message: "errors.auth.passwordTooShort" }),
273
273
  keepLoggedIn: z.boolean().optional()
274
274
  });
275
275