Merge pull request #9375 from backstage/freben/inspect

catalog: add an entity inspection dialog
This commit is contained in:
Ben Lambert
2022-02-10 10:49:41 +01:00
committed by GitHub
26 changed files with 1233 additions and 24 deletions
+2 -2
View File
@@ -133,10 +133,10 @@ export type CatalogEntityAncestorsRequest = {
// @public
export type CatalogEntityAncestorsResponse = {
root: EntityName;
rootEntityRef: string;
items: {
entity: Entity;
parents: EntityName[];
parentEntityRefs: string[];
}[];
};
+2 -2
View File
@@ -121,8 +121,8 @@ export type CatalogEntityAncestorsRequest = {
* @public
*/
export type CatalogEntityAncestorsResponse = {
root: EntityName;
items: { entity: Entity; parents: EntityName[] }[];
rootEntityRef: string;
items: { entity: Entity; parentEntityRefs: string[] }[];
};
/**