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)