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