packages: regenerate all API reports with warnings

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-14 14:16:08 +02:00
parent d669e75d95
commit d9ce823b00
82 changed files with 3481 additions and 12 deletions
+12
View File
@@ -11,6 +11,8 @@ import { Observable } from '@backstage/core-plugin-api';
import ObservableImpl from 'zen-observable';
import { StorageApi } from '@backstage/core-plugin-api';
// Warning: (ae-missing-release-tag) "LocalStoredShortcuts" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export class LocalStoredShortcuts implements ShortcutApi {
constructor(storageApi: StorageApi);
@@ -26,6 +28,8 @@ export class LocalStoredShortcuts implements ShortcutApi {
update(shortcut: Shortcut): Promise<void>;
}
// Warning: (ae-missing-release-tag) "Shortcut" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type Shortcut = {
id: string;
@@ -33,6 +37,8 @@ export type Shortcut = {
title: string;
};
// Warning: (ae-missing-release-tag) "ShortcutApi" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface ShortcutApi {
add(shortcut: Omit<Shortcut, 'id'>): Promise<void>;
@@ -42,12 +48,18 @@ export interface ShortcutApi {
update(shortcut: Shortcut): Promise<void>;
}
// Warning: (ae-missing-release-tag) "Shortcuts" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const Shortcuts: () => JSX.Element;
// Warning: (ae-missing-release-tag) "shortcutsApiRef" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const shortcutsApiRef: ApiRef<ShortcutApi>;
// Warning: (ae-missing-release-tag) "shortcutsPlugin" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const shortcutsPlugin: BackstagePlugin<{}, {}>;