Merge pull request #9877 from backstage/jhaals/result-entityref

catalog-backend: Remove entityRef from CatalogProcessorRelationResult
This commit is contained in:
Johan Haals
2022-03-01 14:34:00 +01:00
committed by GitHub
3 changed files with 5 additions and 2 deletions
-1
View File
@@ -350,7 +350,6 @@ export type CatalogProcessorParser = (options: {
export type CatalogProcessorRelationResult = {
type: 'relation';
relation: EntityRelationSpec;
entityRef?: string;
};
// @public (undocumented)
@@ -179,7 +179,6 @@ export type CatalogProcessorEntityResult = {
export type CatalogProcessorRelationResult = {
type: 'relation';
relation: EntityRelationSpec;
entityRef?: string;
};
/** @public */