From b79a82028a064e6e331edc0855cfac7ffb9c5b53 Mon Sep 17 00:00:00 2001 From: Kiss Miklos Date: Fri, 1 Jul 2022 14:27:49 +0200 Subject: [PATCH] update api-report.md Signed-off-by: Kiss Miklos --- plugins/catalog-backend/api-report.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/catalog-backend/api-report.md b/plugins/catalog-backend/api-report.md index fbbf2186ca..c410f166cc 100644 --- a/plugins/catalog-backend/api-report.md +++ b/plugins/catalog-backend/api-report.md @@ -271,7 +271,6 @@ export type CatalogProcessorParser = (options: { // @public (undocumented) export type CatalogProcessorRefreshKeysResult = { type: 'refresh'; - entityRef: string; key: string; }; @@ -613,7 +612,7 @@ export const processingResult: Readonly<{ newEntity: Entity, ) => CatalogProcessorResult; readonly relation: (spec: EntityRelationSpec) => CatalogProcessorResult; - readonly refresh: (entityRef: string, key: string) => CatalogProcessorResult; + readonly refresh: (key: string) => CatalogProcessorResult; }>; // @public (undocumented)