packages: regenerate all API reports with prettier

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-12 11:20:25 +02:00
parent e87aa59df3
commit 602b5b59bb
78 changed files with 8153 additions and 4661 deletions
+54 -51
View File
@@ -3,7 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="react" />
import { ApiRef } from '@backstage/core-plugin-api';
@@ -21,26 +20,24 @@ export const EntitySentryContent: () => JSX.Element;
// @public (undocumented)
export class MockSentryApi implements SentryApi {
// (undocumented)
fetchIssues(): Promise<SentryIssue[]>;
// (undocumented)
fetchIssues(): Promise<SentryIssue[]>;
}
// @public (undocumented)
export class ProductionSentryApi implements SentryApi {
constructor(discoveryApi: DiscoveryApi, organization: string);
// (undocumented)
fetchIssues(project: string, statsFor: string): Promise<SentryIssue[]>;
constructor(discoveryApi: DiscoveryApi, organization: string);
// (undocumented)
fetchIssues(project: string, statsFor: string): Promise<SentryIssue[]>;
}
// @public (undocumented)
export const Router: ({ entity }: {
entity: Entity;
}) => JSX.Element;
export const Router: ({ entity }: { entity: Entity }) => JSX.Element;
// @public (undocumented)
export interface SentryApi {
// (undocumented)
fetchIssues(project: string, statsFor: string): Promise<SentryIssue[]>;
// (undocumented)
fetchIssues(project: string, statsFor: string): Promise<SentryIssue[]>;
}
// @public (undocumented)
@@ -48,52 +45,58 @@ export const sentryApiRef: ApiRef<SentryApi>;
// @public (undocumented)
export type SentryIssue = {
platform: SentryPlatform;
lastSeen: string;
numComments: number;
userCount: number;
stats: {
'24h'?: EventPoint[];
'12h'?: EventPoint[];
};
culprit: string;
title: string;
id: string;
assignedTo: any;
logger: any;
type: string;
annotations: any[];
metadata: SentryIssueMetadata;
status: string;
subscriptionDetails: any;
isPublic: boolean;
hasSeen: boolean;
shortId: string;
shareId: string | null;
firstSeen: string;
count: string;
permalink: string;
level: string;
isSubscribed: boolean;
isBookmarked: boolean;
project: SentryProject;
statusDetails: any;
platform: SentryPlatform;
lastSeen: string;
numComments: number;
userCount: number;
stats: {
'24h'?: EventPoint[];
'12h'?: EventPoint[];
};
culprit: string;
title: string;
id: string;
assignedTo: any;
logger: any;
type: string;
annotations: any[];
metadata: SentryIssueMetadata;
status: string;
subscriptionDetails: any;
isPublic: boolean;
hasSeen: boolean;
shortId: string;
shareId: string | null;
firstSeen: string;
count: string;
permalink: string;
level: string;
isSubscribed: boolean;
isBookmarked: boolean;
project: SentryProject;
statusDetails: any;
};
// @public (undocumented)
export const SentryIssuesWidget: ({ entity, statsFor, variant, }: {
entity: Entity;
statsFor?: "12h" | "24h" | undefined;
variant?: InfoCardVariants | undefined;
export const SentryIssuesWidget: ({
entity,
statsFor,
variant,
}: {
entity: Entity;
statsFor?: '12h' | '24h' | undefined;
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// @public (undocumented)
const sentryPlugin: BackstagePlugin< {
root: RouteRef<undefined>;
}, {}>;
export { sentryPlugin as plugin }
export { sentryPlugin }
const sentryPlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
},
{}
>;
export { sentryPlugin as plugin };
export { sentryPlugin };
// (No @packageDocumentation comment for this package)
```