@epic-web/workshop-app 5.9.3 → 5.9.4

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.
@@ -9774,8 +9774,8 @@ const EVENTS = {
9774
9774
  };
9775
9775
  const UserInfoSchema = z.object({
9776
9776
  id: z.string(),
9777
- email: z.string().optional(),
9778
- name: z.string().optional()
9777
+ email: z.string(),
9778
+ name: z.string().nullable().optional()
9779
9779
  });
9780
9780
  const authEmitter = remember("authEmitter", () => new EventEmitter());
9781
9781
  authEmitter.removeAllListeners();