@@ -1,6 +1,9 @@
|
||||
---
|
||||
'@backstage/plugin-azure-devops-backend': patch
|
||||
'@backstage/plugin-azure-devops': patch
|
||||
'@backstage/plugin-azure-common': patch
|
||||
---
|
||||
|
||||
`getAllTeams` now accepts an optional `limit` parameter which can be used to return more than the default limit of 100 teams from the Azure DevOps API
|
||||
|
||||
`pullRequestOptions` have been equipped with `teamsLimit` so that the property can be used with `getAllTeams`
|
||||
|
||||
@@ -56,7 +56,7 @@ export class AzureDevOpsApi {
|
||||
},
|
||||
): AzureDevOpsApi;
|
||||
// (undocumented)
|
||||
getAllTeams(limit?: number): Promise<Team[]>;
|
||||
getAllTeams(options?: { limit?: number }): Promise<Team[]>;
|
||||
// (undocumented)
|
||||
getBuildDefinitions(
|
||||
projectName: string,
|
||||
|
||||
@@ -215,6 +215,7 @@ export type PullRequest = {
|
||||
export type PullRequestOptions = {
|
||||
top: number;
|
||||
status: PullRequestStatus;
|
||||
teamsLimit?: number;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
|
||||
Reference in New Issue
Block a user