From ff2131abe3f39249a02f8e3f6bb17be2db2b3fe4 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 20 Oct 2023 17:46:22 +0200 Subject: [PATCH] catalog-react: update API report Signed-off-by: Patrik Oldsberg --- plugins/catalog-react/api-report.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/catalog-react/api-report.md b/plugins/catalog-react/api-report.md index e73441f7dc..7422440955 100644 --- a/plugins/catalog-react/api-report.md +++ b/plugins/catalog-react/api-report.md @@ -142,7 +142,7 @@ export const columnFactories: Readonly<{ export type DefaultEntityFilters = { kind?: EntityKindFilter; type?: EntityTypeFilter; - user?: UserListFilter | EntityUserListFilter; + user?: UserListFilter | EntityUserFilter; owners?: EntityOwnerFilter; lifecycles?: EntityLifecycleFilter; tags?: EntityTagFilter; @@ -508,19 +508,19 @@ export interface EntityTypePickerProps { } // @public (undocumented) -export class EntityUserListFilter implements EntityFilter { +export class EntityUserFilter implements EntityFilter { // (undocumented) - static all(): EntityUserListFilter; + static all(): EntityUserFilter; // (undocumented) filterEntity(entity: Entity): boolean; // (undocumented) getCatalogFilters(): Record; // (undocumented) - static owned(ownershipEntityRefs: string[]): EntityUserListFilter; + static owned(ownershipEntityRefs: string[]): EntityUserFilter; // (undocumented) readonly refs?: string[] | undefined; // (undocumented) - static starred(starredEntityRefs: string[]): EntityUserListFilter; + static starred(starredEntityRefs: string[]): EntityUserFilter; // (undocumented) toQueryValue(): string; // (undocumented)