packages: regenerate all API reports with warnings

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-14 14:16:08 +02:00
parent d669e75d95
commit d9ce823b00
82 changed files with 3481 additions and 12 deletions
+30
View File
@@ -9,6 +9,8 @@ import { ApiRef } from '@backstage/core-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { RouteRef } from '@backstage/core-plugin-api';
// Warning: (ae-missing-release-tag) "RadarEntry" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface RadarEntry {
// (undocumented)
@@ -27,18 +29,24 @@ export interface RadarEntry {
url: string;
}
// Warning: (ae-missing-release-tag) "RadarEntrySnapshot" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface RadarEntrySnapshot {
// (undocumented)
date: Date;
// (undocumented)
description?: string;
// Warning: (ae-forgotten-export) The symbol "MovedState" needs to be exported by the entry point index.d.ts
//
// (undocumented)
moved?: MovedState;
// (undocumented)
ringId: string;
}
// Warning: (ae-missing-release-tag) "RadarQuadrant" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface RadarQuadrant {
// (undocumented)
@@ -47,6 +55,8 @@ export interface RadarQuadrant {
name: string;
}
// Warning: (ae-missing-release-tag) "RadarRing" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface RadarRing {
// (undocumented)
@@ -57,6 +67,8 @@ export interface RadarRing {
name: string;
}
// Warning: (ae-missing-release-tag) "RadarPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const Router: {
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
@@ -67,19 +79,27 @@ export const Router: {
};
};
// Warning: (ae-missing-release-tag) "TechRadarApi" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface TechRadarApi {
load: (id: string | undefined) => Promise<TechRadarLoaderResponse>;
}
// Warning: (ae-missing-release-tag) "techRadarApiRef" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const techRadarApiRef: ApiRef<TechRadarApi>;
// Warning: (ae-missing-release-tag) "RadarComponent" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const TechRadarComponent: (
props: TechRadarComponentProps,
) => JSX.Element;
// Warning: (ae-missing-release-tag) "TechRadarComponentProps" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface TechRadarComponentProps {
// (undocumented)
@@ -92,6 +112,8 @@ export interface TechRadarComponentProps {
width: number;
}
// Warning: (ae-missing-release-tag) "TechRadarLoaderResponse" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface TechRadarLoaderResponse {
// (undocumented)
@@ -102,6 +124,8 @@ export interface TechRadarLoaderResponse {
rings: RadarRing[];
}
// Warning: (ae-missing-release-tag) "TechRadarPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const TechRadarPage: {
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
@@ -112,6 +136,8 @@ export const TechRadarPage: {
};
};
// Warning: (ae-missing-release-tag) "techRadarPlugin" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
const techRadarPlugin: BackstagePlugin<
{
@@ -122,5 +148,9 @@ const techRadarPlugin: BackstagePlugin<
export { techRadarPlugin as plugin };
export { techRadarPlugin };
// Warnings were encountered during analysis:
//
// src/components/RadarPage.d.ts:9:5 - (ae-forgotten-export) The symbol "TechRadarPageProps" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```