run api-reports

Signed-off-by: Paul Cowan <paul.cowan@cutting.scot>
This commit is contained in:
Paul Cowan
2022-10-07 13:38:37 +01:00
parent 663fd697f1
commit eaafa1cb37
+28 -28
View File
@@ -11,6 +11,30 @@ import { RouteRef } from '@backstage/core-plugin-api';
// @public (undocumented)
export const GitHubIssuesCard: (props: GitHubIssuesProps) => JSX.Element;
// @public (undocumented)
export interface GithubIssuesFilters {
// (undocumented)
assignee?: string;
// (undocumented)
createdBy?: string;
// (undocumented)
labels?: string[];
// (undocumented)
mentioned?: string;
// (undocumented)
milestone?: string;
// (undocumented)
states?: ('OPEN' | 'CLOSED')[];
}
// @public (undocumented)
export interface GithubIssuesOrdering {
// (undocumented)
direction?: 'ASC' | 'DESC';
// (undocumented)
field: 'CREATED_AT' | 'UPDATED_AT' | 'COMMENTS';
}
// @public (undocumented)
export const GitHubIssuesPage: (props: GitHubIssuesProps) => JSX.Element;
@@ -27,40 +51,16 @@ export const gitHubIssuesPlugin: BackstagePlugin<
export type GitHubIssuesProps = {
itemsPerPage?: number;
itemsPerRepo?: number;
filterBy?: IssuesFilters;
orderBy?: IssuesOrdering;
filterBy?: GithubIssuesFilters;
orderBy?: GithubIssuesOrdering;
};
// @public (undocumented)
export interface IssuesByRepoOptions {
// (undocumented)
filterBy?: IssuesFilters;
filterBy?: GithubIssuesFilters;
// (undocumented)
orderBy?: IssuesOrdering;
}
// @public (undocumented)
export interface IssuesFilters {
// (undocumented)
assignee?: string;
// (undocumented)
createdBy?: string;
// (undocumented)
labels?: string[];
// (undocumented)
mentioned?: string;
// (undocumented)
milestone?: string;
// (undocumented)
states?: ('OPEN' | 'CLOSED')[];
}
// @public (undocumented)
export interface IssuesOrdering {
// (undocumented)
direction?: 'ASC' | 'DESC';
// (undocumented)
field: 'CREATED_AT' | 'UPDATED_AT' | 'COMMENTS';
orderBy?: GithubIssuesOrdering;
}
// (No @packageDocumentation comment for this package)