From a90f4d235e31a9e71e0c7c4279db4d35d1f242de Mon Sep 17 00:00:00 2001 From: Brian Phillips <28457+brianphillips@users.noreply.github.com> Date: Fri, 17 Mar 2023 09:34:42 -0500 Subject: [PATCH] Update api report for new exports Signed-off-by: Brian Phillips <28457+brianphillips@users.noreply.github.com> --- plugins/catalog/api-report.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/plugins/catalog/api-report.md b/plugins/catalog/api-report.md index c678ce1d3d..52b2c958a7 100644 --- a/plugins/catalog/api-report.md +++ b/plugins/catalog/api-report.md @@ -355,6 +355,16 @@ export const EntityListContainer: (props: { // @public export function EntityOrphanWarning(): JSX.Element; +// Warning: (ae-missing-release-tag) "EntityPredicates" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export interface EntityPredicates { + // (undocumented) + kind?: string | string[]; + // (undocumented) + type?: string | string[]; +} + // @public export function EntityProcessingErrorsPanel(): JSX.Element | null; @@ -433,6 +443,11 @@ export function isComponentType( types: string | string[], ): (entity: Entity) => boolean; +// @public +export function isEntityWith( + predicate: EntityPredicates, +): (entity: Entity) => boolean; + // @public export function isKind(kinds: string | string[]): (entity: Entity) => boolean;