InvitationItemDto: {
    acceptedAt: string | null;
    createdAt: string;
    email: string;
    expiresAt: string;
    id: string;
    role: {
        key: string;
        name: string;
    };
    sentAt: string;
    status:
        | "pending"
        | "accepted"
        | "cancelled"
        | "expired";
}