import { z } from 'zod'; z.object({ profile: z.object({ email: z.string().optional(), displayName: z.string().optional(), picture: z.string().optional() }), backstageIdentity: z.object({ token: z.string(), identity: z.object({ type: z.literal("user"), userEntityRef: z.string(), ownershipEntityRefs: z.array(z.string()) }) }) }); //# sourceMappingURL=types.esm.js.map