1import { AppBskyActorProfile as AtcuteAppBskyActorProfile } from "@atcute/bluesky"; 2import { z } from "zod"; 3 4export const appBskyActorProfileSchema = z.object( 5 AtcuteAppBskyActorProfile.mainSchema, 6); 7 8export type AppBskyActorProfile = z.infer<typeof appBskyActorProfileSchema>;