From eaafa1cb37e18f9ffe4d94a77a99ec9809b0d9e2 Mon Sep 17 00:00:00 2001 From: Paul Cowan Date: Fri, 7 Oct 2022 13:38:37 +0100 Subject: [PATCH] run api-reports Signed-off-by: Paul Cowan --- plugins/github-issues/api-report.md | 56 ++++++++++++++--------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/plugins/github-issues/api-report.md b/plugins/github-issues/api-report.md index 0ce8b77975..d319133783 100644 --- a/plugins/github-issues/api-report.md +++ b/plugins/github-issues/api-report.md @@ -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)