const team = await Team.findOneById<Pick<ITeam, '_id' | 'type'>>(teamId, {
            projection: { _id: 1, type: 1 },
        });