From 24bdbd035e76e77ef264626f226cb92914ac877a Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Fri, 29 Sep 2023 08:48:51 +0200 Subject: [PATCH] docs(catalog): update api reports Signed-off-by: Camila Belo --- plugins/catalog/alpha-api-report.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/plugins/catalog/alpha-api-report.md b/plugins/catalog/alpha-api-report.md index 060baeccbf..e89807ac34 100644 --- a/plugins/catalog/alpha-api-report.md +++ b/plugins/catalog/alpha-api-report.md @@ -5,19 +5,14 @@ ```ts import { BackstagePlugin } from '@backstage/frontend-plugin-api'; import { Extension } from '@backstage/frontend-plugin-api'; -import { TranslationRef } from '@backstage/core-plugin-api/alpha'; // @alpha (undocumented) export const CatalogApi: Extension<{}>; // @alpha (undocumented) -export const catalogTranslationRef: TranslationRef< - 'catalog', - { - readonly catalog_page_title: '{{orgName}} Catalog'; - readonly catalog_page_create_button_title: 'Create'; - } ->; +export const CatalogSearchResultListItemExtension: Extension<{ + noTrack?: boolean | undefined; +}>; // @alpha (undocumented) const _default: BackstagePlugin;