@plyaz/types 1.37.4 → 1.38.0

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.
@@ -270,8 +270,8 @@ var SignupFormSchema = zod.z.object({
270
270
  password: zod.z.string({ error: "errors.form.missingField" }).min(DEFAULT_PASSWORD, "errors.form.passwordTooShort")
271
271
  });
272
272
  var AuthFormSchema = zod.z.object({
273
- email: zod.z.string().email({ message: "auth.errors.emailInvalid" }),
274
- password: zod.z.string().min(DEFAULT_PASSWORD, { message: "auth.errors.passwordTooShort" }),
273
+ email: zod.z.string().email({ message: "errors.auth.emailInvalid" }),
274
+ password: zod.z.string().min(DEFAULT_PASSWORD, { message: "errors.auth.passwordTooShort" }),
275
275
  keepLoggedIn: zod.z.boolean().optional()
276
276
  });
277
277