From 965c49d6bd12b0d665214146bdbad7670a6a1b51 Mon Sep 17 00:00:00 2001 From: Ben Keil Date: Fri, 3 Nov 2023 22:31:20 +0100 Subject: [PATCH] fix: build api report Signed-off-by: Ben Keil --- plugins/catalog-graph/api-report.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/plugins/catalog-graph/api-report.md b/plugins/catalog-graph/api-report.md index 98a68d8aa2..78e291c0ab 100644 --- a/plugins/catalog-graph/api-report.md +++ b/plugins/catalog-graph/api-report.md @@ -8,9 +8,9 @@ import { BackstagePlugin } from '@backstage/core-plugin-api'; import { CompoundEntityRef } from '@backstage/catalog-model'; import { DependencyGraphTypes } from '@backstage/core-components'; +import { Entity } from '@backstage/catalog-model/'; import { ExternalRouteRef } from '@backstage/core-plugin-api'; import { InfoCardVariants } from '@backstage/core-components'; -import { JsonObject } from '@backstage/types'; import { JSX as JSX_2 } from 'react'; import { MouseEvent as MouseEvent_2 } from 'react'; import { MouseEventHandler } from 'react'; @@ -90,11 +90,7 @@ export type EntityNode = DependencyGraphTypes.DependencyNode; // @public export type EntityNodeData = { - name: string; - kind?: string; - title?: string; - namespace: string; - spec?: JsonObject; + entity: Entity; focused?: boolean; color?: 'primary' | 'secondary' | 'default'; onClick?: MouseEventHandler;