recreate all api-reports with latest version of api-extractor
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiEntity } from '@backstage/catalog-model';
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
@@ -30,14 +32,12 @@ export type ApiDefinitionWidget = {
|
||||
export const apiDocsConfigRef: ApiRef<ApiDocsConfig>;
|
||||
|
||||
// @public (undocumented)
|
||||
const apiDocsPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const apiDocsPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {
|
||||
createComponent: ExternalRouteRef<undefined, true>;
|
||||
createComponent: ExternalRouteRef<undefined, true>;
|
||||
}>;
|
||||
|
||||
export { apiDocsPlugin }
|
||||
|
||||
export { apiDocsPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -67,13 +67,13 @@ export const EntityApiDefinitionCard: (_: {
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityConsumedApisCard: ({ variant }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: "gridItem" | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityConsumingComponentsCard: ({ variant }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: "gridItem" | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
@@ -84,13 +84,13 @@ export const EntityHasApisCard: ({ variant }: {
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityProvidedApisCard: ({ variant }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: "gridItem" | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityProvidingComponentsCard: ({ variant }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: "gridItem" | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
@@ -109,7 +109,6 @@ export const ProvidedApisCard: ({ variant }: Props_4) => JSX.Element;
|
||||
// @public (undocumented)
|
||||
export const ProvidingComponentsCard: ({ variant }: Props_7) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,10 +4,12 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const badgesPlugin: BackstagePlugin<{}, {}>;
|
||||
export const badgesPlugin: BackstagePlugin< {}, {}>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityBadgesDialog: ({ open, onClose }: {
|
||||
@@ -15,7 +17,6 @@ export const EntityBadgesDialog: ({ open, onClose }: {
|
||||
onClose?: (() => any) | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,11 +4,13 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
|
||||
// @public (undocumented)
|
||||
export const bitrisePlugin: BackstagePlugin<{}, {}>;
|
||||
export const bitrisePlugin: BackstagePlugin< {}, {}>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityBitriseContent: () => JSX.Element;
|
||||
@@ -16,7 +18,6 @@ export const EntityBitriseContent: () => JSX.Element;
|
||||
// @public (undocumented)
|
||||
export const isBitriseAvailable: (entity: Entity) => boolean;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { CatalogApi } from '@backstage/catalog-client';
|
||||
@@ -89,12 +91,10 @@ export class CatalogImportClient implements CatalogImportApi {
|
||||
export const CatalogImportPage: (opts: StepperProviderOpts) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const catalogImportPlugin: BackstagePlugin<{
|
||||
importPage: RouteRef<undefined>;
|
||||
const catalogImportPlugin: BackstagePlugin< {
|
||||
importPage: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { catalogImportPlugin }
|
||||
|
||||
export { catalogImportPlugin as plugin }
|
||||
|
||||
// @public
|
||||
@@ -124,7 +124,6 @@ export const StepInitAnalyzeUrl: ({ onAnalysis, analysisUrl, disablePullRequest,
|
||||
// @public (undocumented)
|
||||
export const StepPrepareCreatePullRequest: ({ analyzeResult, onPrepare, onGoBack, renderFormFields, defaultTitle, defaultBody, }: Props_8) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { BuildStepAction } from 'circleci-api';
|
||||
@@ -49,10 +51,8 @@ export const circleCIApiRef: ApiRef<CircleCIApi>;
|
||||
export const circleCIBuildRouteRef: RouteRef<undefined>;
|
||||
|
||||
// @public (undocumented)
|
||||
const circleCIPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const circleCIPlugin: BackstagePlugin< {}, {}>;
|
||||
export { circleCIPlugin }
|
||||
|
||||
export { circleCIPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -60,22 +60,19 @@ export const circleCIRouteRef: RouteRef<undefined>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityCircleCIContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
export { GitType }
|
||||
|
||||
// @public (undocumented)
|
||||
const isCircleCIAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isCircleCIAvailable }
|
||||
|
||||
export { isCircleCIAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: (_props: Props) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
@@ -100,28 +102,26 @@ export class CloudbuildClient implements CloudbuildApi {
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
const cloudbuildPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const cloudbuildPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { cloudbuildPlugin }
|
||||
|
||||
export { cloudbuildPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityCloudbuildContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLatestCloudbuildRunCard: ({ branch, }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
branch: string;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLatestCloudbuildsForBranchCard: ({ branch, }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
branch: string;
|
||||
}) => JSX.Element;
|
||||
|
||||
@@ -135,9 +135,7 @@ export interface FETCHSOURCE {
|
||||
|
||||
// @public (undocumented)
|
||||
const isCloudbuildAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isCloudbuildAvailable }
|
||||
|
||||
export { isCloudbuildAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -277,7 +275,6 @@ export interface Volume {
|
||||
path: string;
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,13 +4,15 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const codeCoveragePlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
export const codeCoveragePlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -18,15 +20,12 @@ export const EntityCodeCoverageContent: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const isCodeCoverageAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isCodeCoverageAvailable }
|
||||
|
||||
export { isCodeCoverageAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: () => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Observable } from '@backstage/core-plugin-api';
|
||||
@@ -23,8 +25,8 @@ export const configSchemaApiRef: ApiRef<ConfigSchemaApi>;
|
||||
export const ConfigSchemaPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const configSchemaPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
export const configSchemaPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
// @public
|
||||
@@ -34,8 +36,7 @@ export class StaticSchemaLoader implements ConfigSchemaApi {
|
||||
});
|
||||
// (undocumented)
|
||||
schema$(): Observable<ConfigSchemaResult>;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePalette } from '@backstage/theme';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
@@ -278,14 +280,12 @@ export type CostInsightsPalette = BackstagePalette & CostInsightsPaletteAddition
|
||||
export type CostInsightsPaletteOptions = PaletteOptions & CostInsightsPaletteAdditions;
|
||||
|
||||
// @public (undocumented)
|
||||
const costInsightsPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
growthAlerts: RouteRef<undefined>;
|
||||
unlabeledDataflowAlerts: RouteRef<undefined>;
|
||||
const costInsightsPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
growthAlerts: RouteRef<undefined>;
|
||||
unlabeledDataflowAlerts: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { costInsightsPlugin }
|
||||
|
||||
export { costInsightsPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -393,7 +393,7 @@ export class ExampleCostInsightsClient implements CostInsightsApi {
|
||||
getProjectDailyCost(project: string, intervals: string): Promise<Cost>;
|
||||
// (undocumented)
|
||||
getUserGroups(userId: string): Promise<Group[]>;
|
||||
}
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export type Group = {
|
||||
@@ -615,7 +615,6 @@ export interface UnlabeledDataflowData {
|
||||
unlabeledCost: number;
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { default } from 'react';
|
||||
import { ExternalRouteRef } from '@backstage/core-plugin-api';
|
||||
@@ -11,10 +13,10 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
import { TabProps } from '@material-ui/core';
|
||||
|
||||
// @public (undocumented)
|
||||
export const catalogEntityRouteRef: ExternalRouteRef<{
|
||||
name: string;
|
||||
kind: string;
|
||||
namespace: string;
|
||||
export const catalogEntityRouteRef: ExternalRouteRef< {
|
||||
name: string;
|
||||
kind: string;
|
||||
namespace: string;
|
||||
}, false>;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -32,18 +34,16 @@ export const ExploreLayout: {
|
||||
export const ExplorePage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const explorePlugin: BackstagePlugin<{
|
||||
explore: RouteRef<undefined>;
|
||||
const explorePlugin: BackstagePlugin< {
|
||||
explore: RouteRef<undefined>;
|
||||
}, {
|
||||
catalogEntity: ExternalRouteRef<{
|
||||
name: string;
|
||||
kind: string;
|
||||
namespace: string;
|
||||
}, false>;
|
||||
catalogEntity: ExternalRouteRef< {
|
||||
name: string;
|
||||
kind: string;
|
||||
namespace: string;
|
||||
}, false>;
|
||||
}>;
|
||||
|
||||
export { explorePlugin }
|
||||
|
||||
export { explorePlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -59,7 +59,6 @@ export const ToolExplorerContent: ({ title }: {
|
||||
title?: string | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,24 +4,25 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { InfoCardVariants } from '@backstage/core-components';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityFossaCard: ({ variant }: {
|
||||
variant?: InfoCardVariants| undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const FossaPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const fossaPlugin: BackstagePlugin<{
|
||||
fossaOverview: RouteRef<undefined>;
|
||||
export const fossaPlugin: BackstagePlugin< {
|
||||
fossaOverview: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { OAuthApi } from '@backstage/core-plugin-api';
|
||||
@@ -42,12 +44,10 @@ export class GcpClient implements GcpApi {
|
||||
export const GcpProjectsPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const gcpProjectsPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const gcpProjectsPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { gcpProjectsPlugin }
|
||||
|
||||
export { gcpProjectsPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -80,7 +80,6 @@ export type Status = {
|
||||
details: string[];
|
||||
};
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
@@ -15,11 +17,10 @@ export const gitReleaseManagerApiRef: ApiRef<GitReleaseApi>;
|
||||
export const GitReleaseManagerPage: GitReleaseManager;
|
||||
|
||||
// @public (undocumented)
|
||||
export const gitReleaseManagerPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
export const gitReleaseManagerPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ConfigApi } from '@backstage/core-plugin-api';
|
||||
@@ -27,21 +29,21 @@ export enum BuildStatus {
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityGithubActionsContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLatestGithubActionRunCard: ({ branch, variant, }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
branch: string;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLatestGithubActionsForBranchCard: ({ branch, variant, }: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
branch: string;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -152,19 +154,15 @@ export class GithubActionsClient implements GithubActionsApi {
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
const githubActionsPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const githubActionsPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { githubActionsPlugin }
|
||||
|
||||
export { githubActionsPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
const isGithubActionsAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isGithubActionsAvailable }
|
||||
|
||||
export { isGithubActionsAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -207,7 +205,6 @@ export type Step = {
|
||||
completed_at: string;
|
||||
};
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
@@ -113,17 +115,15 @@ export const GitopsProfilesClusterPage: () => JSX.Element;
|
||||
export const GitopsProfilesCreatePage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const gitopsProfilesPlugin: BackstagePlugin<{
|
||||
listPage: RouteRef<undefined>;
|
||||
detailsPage: RouteRef<{
|
||||
owner: string;
|
||||
repo: string;
|
||||
}>;
|
||||
createPage: RouteRef<undefined>;
|
||||
const gitopsProfilesPlugin: BackstagePlugin< {
|
||||
listPage: RouteRef<undefined>;
|
||||
detailsPage: RouteRef< {
|
||||
owner: string;
|
||||
repo: string;
|
||||
}>;
|
||||
createPage: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { gitopsProfilesPlugin }
|
||||
|
||||
export { gitopsProfilesPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -191,7 +191,6 @@ export interface StatusResponse {
|
||||
status: string;
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ErrorApi } from '@backstage/core-plugin-api';
|
||||
@@ -38,10 +40,8 @@ export const GraphiQLIcon: IconComponent;
|
||||
export const GraphiQLPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const graphiqlPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const graphiqlPlugin: BackstagePlugin< {}, {}>;
|
||||
export { graphiqlPlugin }
|
||||
|
||||
export { graphiqlPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -76,7 +76,6 @@ export class GraphQLEndpoints implements GraphQLBrowseApi {
|
||||
// @public (undocumented)
|
||||
export const Router: () => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ConfigApi } from '@backstage/core-plugin-api';
|
||||
@@ -172,12 +174,10 @@ export const ILertIcon: IconComponent;
|
||||
export const ILertPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const ilertPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const ilertPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { ilertPlugin }
|
||||
|
||||
export { ilertPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -185,9 +185,7 @@ export const iLertRouteRef: RouteRef<undefined>;
|
||||
|
||||
// @public (undocumented)
|
||||
const isPluginApplicableToEntity: (entity: Entity) => boolean;
|
||||
|
||||
export { isPluginApplicableToEntity as isILertAvailable }
|
||||
|
||||
export { isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -199,7 +197,6 @@ export type TableState = {
|
||||
pageSize: number;
|
||||
};
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { DiscoveryApi } from '@backstage/core-plugin-api';
|
||||
@@ -13,20 +15,18 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityJenkinsContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLatestJenkinsRunCard: ({ branch, variant, }: {
|
||||
branch: string;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const isJenkinsAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isJenkinsAvailable }
|
||||
|
||||
export { isJenkinsAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -60,12 +60,10 @@ export class JenkinsApi {
|
||||
export const jenkinsApiRef: ApiRef<JenkinsApi>;
|
||||
|
||||
// @public (undocumented)
|
||||
const jenkinsPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const jenkinsPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { jenkinsPlugin }
|
||||
|
||||
export { jenkinsPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -77,7 +75,6 @@ export const LatestRunCard: ({ branch, variant, }: {
|
||||
// @public (undocumented)
|
||||
export const Router: (_props: Props) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,38 +4,35 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityKafkaContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const isPluginApplicableToEntity: (entity: Entity) => boolean;
|
||||
|
||||
export { isPluginApplicableToEntity as isKafkaAvailable }
|
||||
|
||||
export { isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
export const KAFKA_CONSUMER_GROUP_ANNOTATION = "kafka.apache.org/consumer-groups";
|
||||
|
||||
// @public (undocumented)
|
||||
const kafkaPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const kafkaPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { kafkaPlugin }
|
||||
|
||||
export { kafkaPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: (_props: Props) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
@@ -13,7 +15,7 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityKubernetesContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -23,24 +25,21 @@ export class KubernetesAuthProviders implements KubernetesAuthProvidersApi {
|
||||
});
|
||||
// (undocumented)
|
||||
decorateRequestBodyForAuth(authProvider: string, requestBody: KubernetesRequestBody): Promise<KubernetesRequestBody>;
|
||||
}
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const kubernetesAuthProvidersApiRef: ApiRef<KubernetesAuthProvidersApi>;
|
||||
|
||||
// @public (undocumented)
|
||||
const kubernetesPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const kubernetesPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { kubernetesPlugin }
|
||||
|
||||
export { kubernetesPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: (_props: Props) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Config } from '@backstage/config';
|
||||
@@ -46,12 +48,12 @@ export const EmbeddedRouter: (_props: Props) => JSX.Element;
|
||||
// @public (undocumented)
|
||||
export const EntityLastLighthouseAuditCard: ({ dense, variant, }: {
|
||||
dense?: boolean | undefined;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityLighthouseContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -64,9 +66,7 @@ export class FetchError extends Error {
|
||||
|
||||
// @public (undocumented)
|
||||
const isLighthouseAvailable: (entity: Entity) => boolean;
|
||||
|
||||
export { isLighthouseAvailable }
|
||||
|
||||
export { isLighthouseAvailable as isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -124,13 +124,11 @@ export type LighthouseCategoryId = 'pwa' | 'seo' | 'performance' | 'accessibilit
|
||||
export const LighthousePage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const lighthousePlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
entityContent: RouteRef<undefined>;
|
||||
const lighthousePlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { lighthousePlugin }
|
||||
|
||||
export { lighthousePlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -180,7 +178,6 @@ export interface Website {
|
||||
// @public (undocumented)
|
||||
export type WebsiteListResponse = LASListResponse<Website>;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
@@ -11,15 +13,12 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
export const NewRelicPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const newRelicPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const newRelicPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { newRelicPlugin }
|
||||
|
||||
export { newRelicPlugin as plugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
+10
-11
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { GroupEntity } from '@backstage/catalog-model';
|
||||
@@ -12,25 +14,25 @@ import { UserEntity } from '@backstage/catalog-model';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityGroupProfileCard: ({ variant, }: {
|
||||
entity?: GroupEntity| undefined;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
entity?: GroupEntity | undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityMembersListCard: (_props: {
|
||||
entity?: GroupEntity| undefined;
|
||||
entity?: GroupEntity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityOwnershipCard: ({ variant, }: {
|
||||
entity?: Entity| undefined;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityUserProfileCard: ({ variant, }: {
|
||||
entity?: UserEntity| undefined;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
entity?: UserEntity | undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -45,10 +47,8 @@ export const MembersListCard: (_props: {
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const orgPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const orgPlugin: BackstagePlugin< {}, {}>;
|
||||
export { orgPlugin }
|
||||
|
||||
export { orgPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -63,7 +63,6 @@ export const UserProfileCard: ({ variant, }: {
|
||||
variant?: InfoCardVariants | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ConfigApi } from '@backstage/core-plugin-api';
|
||||
@@ -16,9 +18,7 @@ export const EntityPagerDutyCard: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const isPluginApplicableToEntity: (entity: Entity) => boolean;
|
||||
|
||||
export { isPluginApplicableToEntity as isPagerDutyAvailable }
|
||||
|
||||
export { isPluginApplicableToEntity }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -43,10 +43,8 @@ export class PagerDutyClient implements PagerDutyApi {
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
const pagerDutyPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const pagerDutyPlugin: BackstagePlugin< {}, {}>;
|
||||
export { pagerDutyPlugin }
|
||||
|
||||
export { pagerDutyPlugin as plugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -56,7 +54,6 @@ export function TriggerButton({ children, }: PropsWithChildren<TriggerButtonProp
|
||||
export class UnauthorizedError extends Error {
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
@@ -13,12 +15,10 @@ export const RegisterComponentPage: ({ catalogRouteRef, }: {
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const registerComponentPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const registerComponentPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { registerComponentPlugin as plugin }
|
||||
|
||||
export { registerComponentPlugin }
|
||||
|
||||
// @public @deprecated
|
||||
@@ -26,7 +26,6 @@ export const Router: ({ catalogRouteRef }: {
|
||||
catalogRouteRef: RouteRef;
|
||||
}) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { DiscoveryApi } from '@backstage/core-plugin-api';
|
||||
@@ -16,14 +18,12 @@ export const EntityPageRollbar: (_props: Props) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityRollbarContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const isPluginApplicableToEntity: (entity: Entity) => boolean;
|
||||
|
||||
export { isPluginApplicableToEntity }
|
||||
|
||||
export { isPluginApplicableToEntity as isRollbarAvailable }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -58,21 +58,18 @@ export class RollbarClient implements RollbarApi {
|
||||
getProjectItems(project: string): Promise<RollbarItemsResponse>;
|
||||
// (undocumented)
|
||||
getTopActiveItems(project: string, hours?: number, environment?: string): Promise<RollbarTopActiveItem[]>;
|
||||
}
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
const rollbarPlugin: BackstagePlugin<{
|
||||
entityContent: RouteRef<undefined>;
|
||||
const rollbarPlugin: BackstagePlugin< {
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { rollbarPlugin as plugin }
|
||||
|
||||
export { rollbarPlugin }
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: (_props: Props_2) => JSX.Element;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
import { CatalogApi } from '@backstage/catalog-client';
|
||||
import { Config } from '@backstage/config';
|
||||
import { ContainerRunner } from '@backstage/backend-common';
|
||||
@@ -121,7 +123,7 @@ export function createRouter(options: RouterOptions): Promise<express.Router>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const createTemplateAction: <Input extends Partial<{
|
||||
[name: string]: JsonValue| Partial<JsonObject> | undefined;
|
||||
[name: string]: JsonValue | Partial<JsonObject> | undefined;
|
||||
}>>(templateAction: TemplateAction<Input>) => TemplateAction<any>;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -177,7 +179,6 @@ export class TemplateActionRegistry {
|
||||
register<Parameters extends InputBase>(action: TemplateAction<Parameters>): void;
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiHolder } from '@backstage/core-plugin-api';
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
@@ -109,17 +111,14 @@ export const ScaffolderFieldExtensions: React_2.ComponentType;
|
||||
export const ScaffolderPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const scaffolderPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const scaffolderPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {
|
||||
registerComponent: ExternalRouteRef<undefined, true>;
|
||||
registerComponent: ExternalRouteRef<undefined, true>;
|
||||
}>;
|
||||
|
||||
export { scaffolderPlugin as plugin }
|
||||
|
||||
export { scaffolderPlugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { AsyncState } from 'react-use/lib/useAsync';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
@@ -74,13 +76,11 @@ export const SearchPage: () => JSX.Element;
|
||||
export const SearchPageNext: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const searchPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
nextRoot: RouteRef<undefined>;
|
||||
const searchPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
nextRoot: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { searchPlugin as plugin }
|
||||
|
||||
export { searchPlugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -96,7 +96,6 @@ export const SidebarSearch: () => JSX.Element;
|
||||
// @public (undocumented)
|
||||
export const useSearch: () => SearchContextValue;
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { DiscoveryApi } from '@backstage/core-plugin-api';
|
||||
@@ -28,7 +30,7 @@ export class ProductionSentryApi implements SentryApi {
|
||||
constructor(discoveryApi: DiscoveryApi, organization: string);
|
||||
// (undocumented)
|
||||
fetchIssues(project: string, statsFor: string): Promise<SentryIssue[]>;
|
||||
}
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: ({ entity }: {
|
||||
@@ -86,15 +88,12 @@ export const SentryIssuesWidget: ({ entity, statsFor, variant, }: {
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const sentryPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const sentryPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { sentryPlugin as plugin }
|
||||
|
||||
export { sentryPlugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Observable } from '@backstage/core-plugin-api';
|
||||
@@ -48,8 +50,7 @@ export const Shortcuts: () => JSX.Element;
|
||||
export const shortcutsApiRef: ApiRef<ShortcutApi>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const shortcutsPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
export const shortcutsPlugin: BackstagePlugin< {}, {}>;
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
|
||||
@@ -4,14 +4,16 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { InfoCardVariants } from '@backstage/core-components';
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntitySonarQubeCard: ({ variant, duplicationRatings, }: {
|
||||
entity?: Entity| undefined;
|
||||
variant?: InfoCardVariants| undefined;
|
||||
entity?: Entity | undefined;
|
||||
variant?: InfoCardVariants | undefined;
|
||||
duplicationRatings?: {
|
||||
greaterThan: number;
|
||||
rating: "1.0" | "2.0" | "3.0" | "4.0" | "5.0";
|
||||
@@ -29,13 +31,10 @@ export const SonarQubeCard: ({ variant, duplicationRatings, }: {
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const sonarQubePlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const sonarQubePlugin: BackstagePlugin< {}, {}>;
|
||||
export { sonarQubePlugin as plugin }
|
||||
|
||||
export { sonarQubePlugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ConfigApi } from '@backstage/core-plugin-api';
|
||||
@@ -37,7 +39,7 @@ export class SplunkOnCallClient implements SplunkOnCallApi {
|
||||
getUsers(): Promise<User[]>;
|
||||
// (undocumented)
|
||||
incidentAction({ routingKey, incidentType, incidentId, incidentDisplayName, incidentMessage, incidentStartTime, }: TriggerAlarmRequest): Promise<Response>;
|
||||
}
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const SplunkOnCallPage: {
|
||||
@@ -50,19 +52,16 @@ export const SplunkOnCallPage: {
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
const splunkOnCallPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const splunkOnCallPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { splunkOnCallPlugin as plugin }
|
||||
|
||||
export { splunkOnCallPlugin }
|
||||
|
||||
// @public (undocumented)
|
||||
export class UnauthorizedError extends Error {
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
@@ -110,15 +112,12 @@ export const TechRadarPage: {
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
const techRadarPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
const techRadarPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { techRadarPlugin as plugin }
|
||||
|
||||
export { techRadarPlugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Config } from '@backstage/config';
|
||||
@@ -31,7 +33,7 @@ export const EmbeddedDocsRouter: (_props: Props) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityTechdocsContent: (_props: {
|
||||
entity?: Entity| undefined;
|
||||
entity?: Entity | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -87,13 +89,11 @@ export const TechDocsCustomHome: ({ tabsConfig, }: {
|
||||
export const TechdocsPage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const techdocsPlugin: BackstagePlugin<{
|
||||
root: RouteRef<undefined>;
|
||||
entityContent: RouteRef<undefined>;
|
||||
const techdocsPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
entityContent: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { techdocsPlugin as plugin }
|
||||
|
||||
export { techdocsPlugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -143,7 +143,6 @@ export class TechDocsStorageClient implements TechDocsStorageApi {
|
||||
syncEntityDocs(entityId: EntityName): Promise<SyncResult>;
|
||||
}
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
@@ -15,8 +17,7 @@ export const EntityTodoContent: () => JSX.Element;
|
||||
export const todoApiRef: ApiRef<TodoApi>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const todoPlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
export const todoPlugin: BackstagePlugin< {}, {}>;
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { IconComponent } from '@backstage/core-plugin-api';
|
||||
@@ -47,12 +49,10 @@ export const UserSettingsPage: ({ providerSettings }: {
|
||||
export const UserSettingsPinToggle: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const userSettingsPlugin: BackstagePlugin<{
|
||||
settingsPage: RouteRef<undefined>;
|
||||
const userSettingsPlugin: BackstagePlugin< {
|
||||
settingsPage: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
|
||||
export { userSettingsPlugin as plugin }
|
||||
|
||||
export { userSettingsPlugin }
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -70,7 +70,6 @@ export const useUserProfile: () => {
|
||||
displayName: string;
|
||||
};
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
@@ -4,19 +4,18 @@
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export const WelcomePage: () => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
const welcomePlugin: BackstagePlugin<{}, {}>;
|
||||
|
||||
const welcomePlugin: BackstagePlugin< {}, {}>;
|
||||
export { welcomePlugin as plugin }
|
||||
|
||||
export { welcomePlugin }
|
||||
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user