diff --git a/plugins/catalog-backend/report.api.md b/plugins/catalog-backend/report.api.md index a1391e9b44..a6389185a7 100644 --- a/plugins/catalog-backend/report.api.md +++ b/plugins/catalog-backend/report.api.md @@ -479,6 +479,11 @@ export const processingResult: Readonly<{ readonly entity: ( atLocation: LocationSpec_2, newEntity: Entity, + options?: + | { + locationKey?: string | null | undefined; + } + | undefined, ) => CatalogProcessorResult_2; readonly relation: (spec: EntityRelationSpec_2) => CatalogProcessorResult_2; readonly refresh: (key: string) => CatalogProcessorResult_2; diff --git a/plugins/catalog-node/report.api.md b/plugins/catalog-node/report.api.md index e196fff230..ddfac756b4 100644 --- a/plugins/catalog-node/report.api.md +++ b/plugins/catalog-node/report.api.md @@ -76,6 +76,7 @@ export type CatalogProcessorEntityResult = { type: 'entity'; entity: Entity; location: LocationSpec_2; + locationKey?: string | null; }; // @public (undocumented) @@ -334,6 +335,9 @@ export const processingResult: Readonly<{ readonly entity: ( atLocation: LocationSpec_2, newEntity: Entity, + options?: { + locationKey?: string | null; + }, ) => CatalogProcessorResult; readonly relation: (spec: EntityRelationSpec) => CatalogProcessorResult; readonly refresh: (key: string) => CatalogProcessorResult;