export type UserType = {
    _id: string;
    stytchMemberId: string;
    email: string;
    orgId: string;
    createdAt: Date;
    isPending?: boolean;
    github?: {
        id: number;
        owner: string;
    };
    plainHash: string;
};
