@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/auth/index.cjs +2 -2
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.js +2 -2
- package/dist/auth/index.js.map +1 -1
- package/dist/core/events/streaming/types.d.ts +18 -0
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/auth/index.cjs
CHANGED
|
@@ -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.
|
|
274
|
-
password: zod.z.string().min(DEFAULT_PASSWORD, { message: "auth.
|
|
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
|
|