catalog-backend: update API reports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-01-28 13:38:28 +01:00
parent 3ac000e228
commit f714559b27
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -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;
+4
View File
@@ -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;