From 87dc91dda0ad579fb891e0257d2efa4271fd3ee5 Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Thu, 14 Nov 2024 18:52:41 +1100 Subject: [PATCH] update catalog api reports again for some reason Signed-off-by: Tyler Davis --- plugins/catalog/report-alpha.api.md | 50 ++++++++++++++--------------- plugins/catalog/report.api.md | 6 ++-- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/plugins/catalog/report-alpha.api.md b/plugins/catalog/report-alpha.api.md index 6a8007a199..be7f3386c5 100644 --- a/plugins/catalog/report-alpha.api.md +++ b/plugins/catalog/report-alpha.api.md @@ -98,8 +98,8 @@ export const catalogTranslationRef: TranslationRef< readonly 'entityLinksCard.title': 'Links'; readonly 'entityLinksCard.emptyDescription': 'No links defined for this entity. You can add links to your entity YAML as shown in the highlighted example below:'; readonly 'entityLinksCard.readMoreButtonTitle': 'Read more'; - readonly 'entityNotFound.description': 'Want to help us build this? Check out our Getting Started documentation.'; readonly 'entityNotFound.title': 'Entity was not found'; + readonly 'entityNotFound.description': 'Want to help us build this? Check out our Getting Started documentation.'; readonly 'entityNotFound.docButtonTitle': 'DOCS'; readonly entityProcessingErrorsDescription: 'The error below originates from'; readonly entityRelationWarningDescription: "This entity has relations to other entities, which can't be found in the catalog.\n Entities not found are: "; @@ -114,8 +114,8 @@ export const catalogTranslationRef: TranslationRef< readonly 'hasSystemsCard.title': 'Has systems'; readonly 'hasSystemsCard.emptyMessage': 'No system is part of this domain'; readonly 'relatedEntitiesCard.emptyHelpLinkTitle': 'Learn how to change this'; - readonly 'systemDiagramCard.description': 'Use pinch & zoo to move around the diagram.'; readonly 'systemDiagramCard.title': 'System Diagram'; + readonly 'systemDiagramCard.description': 'Use pinch & zoo to move around the diagram.'; readonly 'systemDiagramCard.edgeLabels.dependsOn': 'depends on'; readonly 'systemDiagramCard.edgeLabels.partOf': 'part of'; readonly 'systemDiagramCard.edgeLabels.provides': 'provides'; @@ -127,15 +127,15 @@ const _default: FrontendPlugin< { catalogIndex: RouteRef; catalogEntity: RouteRef<{ - kind: string; name: string; + kind: string; namespace: string; }>; }, { viewTechDoc: ExternalRouteRef<{ - kind: string; name: string; + kind: string; namespace: string; }>; createComponent: ExternalRouteRef; @@ -182,27 +182,6 @@ const _default: FrontendPlugin< factory: AnyApiFactory; }; }>; - 'nav-item:catalog': ExtensionDefinition<{ - kind: 'nav-item'; - name: undefined; - config: {}; - configInput: {}; - output: ConfigurableExtensionDataRef< - { - title: string; - icon: IconComponent; - routeRef: RouteRef; - }, - 'core.nav-item.target', - {} - >; - inputs: {}; - params: { - title: string; - icon: IconComponent; - routeRef: RouteRef; - }; - }>; 'api:catalog/starred-entities': ExtensionDefinition<{ kind: 'api'; name: 'starred-entities'; @@ -867,6 +846,27 @@ const _default: FrontendPlugin< routeRef?: RouteRef | undefined; }; }>; + 'nav-item:catalog': ExtensionDefinition<{ + kind: 'nav-item'; + name: undefined; + config: {}; + configInput: {}; + output: ConfigurableExtensionDataRef< + { + title: string; + icon: IconComponent; + routeRef: RouteRef; + }, + 'core.nav-item.target', + {} + >; + inputs: {}; + params: { + title: string; + icon: IconComponent; + routeRef: RouteRef; + }; + }>; 'search-result-list-item:catalog': ExtensionDefinition<{ kind: 'search-result-list-item'; name: undefined; diff --git a/plugins/catalog/report.api.md b/plugins/catalog/report.api.md index b352ced580..8bc620d221 100644 --- a/plugins/catalog/report.api.md +++ b/plugins/catalog/report.api.md @@ -105,8 +105,8 @@ export const catalogPlugin: BackstagePlugin< { catalogIndex: RouteRef; catalogEntity: RouteRef<{ - kind: string; name: string; + kind: string; namespace: string; }>; }, @@ -114,8 +114,8 @@ export const catalogPlugin: BackstagePlugin< createComponent: ExternalRouteRef; viewTechDoc: ExternalRouteRef< { - kind: string; name: string; + kind: string; namespace: string; }, true @@ -518,7 +518,7 @@ export const FilterContainer: (props: { | 'lg' | 'xl' | undefined; - drawerAnchor?: 'top' | 'bottom' | 'left' | 'right' | undefined; + drawerAnchor?: 'left' | 'top' | 'bottom' | 'right' | undefined; } | undefined; }) => JSX_2.Element;