updated api-report

Signed-off-by: Quadman <QuadmanSWE@gmail.com>
This commit is contained in:
Quadman
2024-04-07 18:10:20 +02:00
parent 481f784d6e
commit a16fe875d6
3 changed files with 5 additions and 1 deletions
+3
View File
@@ -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`
+1 -1
View File
@@ -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)