Merge pull request #47 from pennyteenycat/fix/externalId

make externalId optional
This commit is contained in:
pennyteenycat 2025-09-04 23:37:41 +02:00 committed by GitHub
commit 3fdffa8165
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,7 @@ export const UserSchema = z.object({
sign: z.boolean(),
signDate: z.string().nullable().optional(),
password: z.string(),
externalId: z.string(),
externalId: z.string().optional(),
klaviyoId: z.string().nullable(),
assistants: z.array(z.string()),
createdAt: z.string().optional(),