chore: fix api-report

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-02 17:23:42 +01:00
parent f41a293231
commit 5185e27bdf
3 changed files with 12 additions and 9 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/plugin-scaffolder': minor
---
- **BREAKING**: Removed the `FavouriteEntity` export in favor of the `FavoriteEntity` from `@backstage/plguin-catalog-react`. Please migrate any usages to that component instead if you are creating your own `TemplateCard` page.
- **BREAKING**: Removed the `FavouriteTemplate` export in favor of the `FavoriteEntity` from `@backstage/plugin-catalog-react`. Please migrate any usages to that component instead if you are creating your own `TemplateCard` page.
+10 -7
View File
@@ -413,13 +413,8 @@ export const favoriteEntityTooltip: (
isStarred: boolean,
) => 'Remove from favorites' | 'Add to favorites';
// @public (undocumented)
export function formatEntityRefTitle(
entityRef: Entity | EntityName,
opts?: {
defaultKind?: string;
},
): string;
// @public @deprecated (undocumented)
export const formatEntityRefTitle: typeof humanizeEntityRef;
// @public @deprecated (undocumented)
export function getEntityMetadataEditUrl(entity: Entity): string | undefined;
@@ -442,6 +437,14 @@ export function getEntitySourceLocation(
scmIntegrationsApi: ScmIntegrationRegistry,
): EntitySourceLocation | undefined;
// @public (undocumented)
export function humanizeEntityRef(
entityRef: Entity | EntityName,
opts?: {
defaultKind?: string;
},
): string;
// @public
export function InspectEntityDialog(props: {
open: boolean;
@@ -20,7 +20,7 @@ import {
DEFAULT_NAMESPACE,
} from '@backstage/catalog-model';
/** @deprecated please use {@link humanizeEntityRef} instead */
/** @public @deprecated please use {@link humanizeEntityRef} instead */
export const formatEntityRefTitle = humanizeEntityRef;
/** @public */