catalog-backend: update API report

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-09-22 19:03:33 +02:00
committed by Johan Haals
parent b0e1aa7620
commit 81d3f28e71
+3 -2
View File
@@ -17,6 +17,7 @@ import { EntityPolicy } from '@backstage/catalog-model';
import { EntityRelationSpec } from '@backstage/catalog-model';
import express from 'express';
import { IndexableDocument } from '@backstage/search-common';
import { JsonObject } from '@backstage/config';
import { JsonValue } from '@backstage/config';
import { Knex } from 'knex';
import { Location as Location_2 } from '@backstage/catalog-model';
@@ -877,7 +878,7 @@ export type EntityPagination = {
// @public (undocumented)
export type EntityProcessingRequest = {
entity: Entity;
state?: JsonValue;
state?: JsonObject;
};
// Warning: (ae-missing-release-tag) "EntityProcessingResult" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
@@ -886,7 +887,7 @@ export type EntityProcessingRequest = {
export type EntityProcessingResult =
| {
ok: true;
state: JsonValue;
state: JsonObject;
completedEntity: Entity;
deferredEntities: DeferredEntity[];
relations: EntityRelationSpec[];