Type Alias PermissionBulkGrantResponseDto

PermissionBulkGrantResponseDto: {
    granted: number;
    skipped: {
        reason: "ALREADY_GRANTED" | "HAS_VIA_ROLE";
        subjectId: string;
    }[];
}