@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.
package/dist/index.cjs CHANGED
@@ -6278,8 +6278,8 @@ var SignupFormSchema = zod.z.object({
6278
6278
  password: zod.z.string({ error: "errors.form.missingField" }).min(DEFAULT_PASSWORD, "errors.form.passwordTooShort")
6279
6279
  });
6280
6280
  var AuthFormSchema = zod.z.object({
6281
- email: zod.z.string().email({ message: "auth.errors.emailInvalid" }),
6282
- password: zod.z.string().min(DEFAULT_PASSWORD, { message: "auth.errors.passwordTooShort" }),
6281
+ email: zod.z.string().email({ message: "errors.auth.emailInvalid" }),
6282
+ password: zod.z.string().min(DEFAULT_PASSWORD, { message: "errors.auth.passwordTooShort" }),
6283
6283
  keepLoggedIn: zod.z.boolean().optional()
6284
6284
  });
6285
6285