From f714559b27a715a0b11a4a18e6fc744656d284b9 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 28 Jan 2025 13:38:28 +0100 Subject: [PATCH] catalog-backend: update API reports Signed-off-by: Patrik Oldsberg --- plugins/catalog-backend/report.api.md | 5 +++++ plugins/catalog-node/report.api.md | 4 ++++ 2 files changed, 9 insertions(+) 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;