From c39cf20e1f25ebe1f137e8a4fac0473623325596 Mon Sep 17 00:00:00 2001 From: irma12 Date: Tue, 23 Nov 2021 15:51:19 +0100 Subject: [PATCH] Add API reports Signed-off-by: irma12 --- plugins/scorecards/api-report.md | 4 ---- plugins/tech-insights-common/api-report.md | 3 ++- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/scorecards/api-report.md b/plugins/scorecards/api-report.md index eb3ce4533b..705cce373e 100644 --- a/plugins/scorecards/api-report.md +++ b/plugins/scorecards/api-report.md @@ -8,13 +8,9 @@ import { BackstagePlugin } from '@backstage/core-plugin-api'; import { RouteRef } from '@backstage/core-plugin-api'; -// Warning: (ae-missing-release-tag) "EntityScorecardContent" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// // @public (undocumented) export const EntityScorecardContent: () => JSX.Element; -// Warning: (ae-missing-release-tag) "scorecardsPlugin" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// // @public (undocumented) export const scorecardsPlugin: BackstagePlugin< { diff --git a/plugins/tech-insights-common/api-report.md b/plugins/tech-insights-common/api-report.md index 3c806daa57..8618f6266b 100644 --- a/plugins/tech-insights-common/api-report.md +++ b/plugins/tech-insights-common/api-report.md @@ -4,6 +4,7 @@ ```ts import { DateTime } from 'luxon'; +import { JsonValue } from '@backstage/types'; // @public export interface BooleanCheckResult extends CheckResult { @@ -25,7 +26,7 @@ export interface CheckResponse { export type CheckResult = { facts: FactResponse; check: CheckResponse; - result: any; + result: JsonValue; }; // @public