From d02960f76492028a6c5e10a17d9104480558927c Mon Sep 17 00:00:00 2001 From: "@pawelmitka" Date: Wed, 1 Sep 2021 12:52:06 +0200 Subject: [PATCH] fix: update plugins/scaffolder-backend/api-report.md Signed-off-by: @pawelmitka --- plugins/scaffolder-backend/api-report.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/scaffolder-backend/api-report.md b/plugins/scaffolder-backend/api-report.md index dfda1ff2fc..5d848e42d2 100644 --- a/plugins/scaffolder-backend/api-report.md +++ b/plugins/scaffolder-backend/api-report.md @@ -14,6 +14,7 @@ import express from 'express'; import { JsonObject } from '@backstage/config'; import { JsonValue } from '@backstage/config'; import { Logger as Logger_2 } from 'winston'; +import { Octokit } from '@octokit/rest'; import { PluginDatabaseManager } from '@backstage/backend-common'; import { Schema } from 'jsonschema'; import { ScmIntegrationRegistry } from '@backstage/integration'; @@ -200,6 +201,16 @@ export function fetchContents({ outputPath: string; }): Promise; +// Warning: (ae-missing-release-tag) "OctokitProvider" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public +export class OctokitProvider { + constructor(integrations: ScmIntegrationRegistry); + // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen + // Warning: (ae-forgotten-export) The symbol "OctokitIntegration" needs to be exported by the entry point index.d.ts + getOctokit(repoUrl: string): Promise; +} + // Warning: (ae-missing-release-tag) "RouterOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented)