From fc583608d8cfc00a4a165bfa0145ca7f3816d60c Mon Sep 17 00:00:00 2001 From: Callen Barton <7515844+cal5barton@users.noreply.github.com> Date: Thu, 7 Jul 2022 10:29:38 -0600 Subject: [PATCH] Updating api reports Signed-off-by: Callen Barton <7515844+cal5barton@users.noreply.github.com> --- plugins/azure-devops-backend/api-report.md | 3 +++ plugins/azure-devops-common/api-report.md | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/plugins/azure-devops-backend/api-report.md b/plugins/azure-devops-backend/api-report.md index e3e3d9e161..eaebea4d7b 100644 --- a/plugins/azure-devops-backend/api-report.md +++ b/plugins/azure-devops-backend/api-report.md @@ -12,6 +12,7 @@ import express from 'express'; import { GitRepository } from 'azure-devops-node-api/interfaces/GitInterfaces'; import { GitTag } from '@backstage/plugin-azure-devops-common'; import { Logger } from 'winston'; +import { Project } from '@backstage/plugin-azure-devops-common'; import { PullRequest } from '@backstage/plugin-azure-devops-common'; import { PullRequestOptions } from '@backstage/plugin-azure-devops-common'; import { RepoBuild } from '@backstage/plugin-azure-devops-common'; @@ -64,6 +65,8 @@ export class AzureDevOpsApi { // (undocumented) getGitTags(projectName: string, repoName: string): Promise; // (undocumented) + getProjects(): Promise; + // (undocumented) getPullRequests( projectName: string, repoName: string, diff --git a/plugins/azure-devops-common/api-report.md b/plugins/azure-devops-common/api-report.md index bdb4cc424d..34d911dac6 100644 --- a/plugins/azure-devops-common/api-report.md +++ b/plugins/azure-devops-common/api-report.md @@ -168,6 +168,15 @@ export enum PolicyTypeId { Status = 'cbdc66da-9728-4af8-aada-9a5a32e4a226', } +// Warning: (ae-missing-release-tag) "Project" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export type Project = { + id?: string; + name?: string; + description?: string; +}; + // Warning: (ae-missing-release-tag) "PullRequest" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented)