in src/service/helper.ts [138:143]
async fetchTeams(project: IProjectInfo, filter?: FilterInterface, clientOptions?: IVssRestClientOptions): Promise<WebApiTeam[]> {
const { name: projectName } = project;
const coreClient = getClient(CoreRestClient, clientOptions);
return coreClient.getTeams(projectName)
.then(teams => teams.filter(({ id }) => filter?.teams?.some(it => it.id === id) ?? true));
},