From 81d3f28e71a09277cc93271b1850597bfcb3b4ac Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Wed, 22 Sep 2021 19:03:33 +0200 Subject: [PATCH] catalog-backend: update API report Signed-off-by: Patrik Oldsberg --- plugins/catalog-backend/api-report.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/catalog-backend/api-report.md b/plugins/catalog-backend/api-report.md index 10f149f850..133deb96fc 100644 --- a/plugins/catalog-backend/api-report.md +++ b/plugins/catalog-backend/api-report.md @@ -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[];