catalog-backend: update API reports
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user