fixed api-report

Signed-off-by: Manuel Scurti <manuel.scurti@agilelab.it>
This commit is contained in:
Manuel Scurti
2023-06-11 01:29:57 +02:00
parent 5d1f0957f9
commit 926a65b611
4 changed files with 5 additions and 21 deletions
-18
View File
@@ -68,14 +68,10 @@ export type AlertDisplayProps = {
transientTimeoutMs?: number;
};
// Warning: (ae-missing-release-tag) "AUTOLOGOUT_LAST_SEEN_ONLINE_STORAGE_KEY" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const AUTOLOGOUT_LAST_SEEN_ONLINE_STORAGE_KEY =
'@backstage/autologout:lastSeenOnline';
// Warning: (ae-missing-release-tag) "AutoLogoutProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export const AutoLogoutProvider: ({
children,
@@ -87,8 +83,6 @@ export const AutoLogoutProvider: ({
logoutIfDisconnected,
}: PropsWithChildren<AutoLogoutProviderProps>) => JSX.Element;
// Warning: (ae-missing-release-tag) "AutoLogoutProviderProps" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type AutoLogoutProviderProps = {
enabled?: boolean;
@@ -99,8 +93,6 @@ export type AutoLogoutProviderProps = {
logoutIfDisconnected?: boolean;
};
// Warning: (ae-missing-release-tag) "AutoLogoutTrackableEvent" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type AutoLogoutTrackableEvent = EventsType;
@@ -202,15 +194,11 @@ export interface CodeSnippetProps {
text: string;
}
// Warning: (ae-missing-release-tag) "ConfigBasedAutoLogoutProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export const ConfigBasedAutoLogoutProvider: ({
children,
}: PropsWithChildren<ConfigBasedAutoLogoutProviderProps>) => JSX.Element;
// Warning: (ae-missing-release-tag) "ConfigBasedAutoLogoutProviderProps" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type ConfigBasedAutoLogoutProviderProps = {};
@@ -1550,12 +1538,6 @@ export type WarningPanelClassKey =
// Warnings were encountered during analysis:
//
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:7:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:13:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:20:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:27:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:32:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/AutoLogoutProvider/AutoLogoutProvider.d.ts:39:8 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
// src/components/DependencyGraph/types.d.ts:22:9 - (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/core-components" does not have an export "DependencyNode"
// src/components/DependencyGraph/types.d.ts:26:9 - (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/core-components" does not have an export "DependencyNode"
// src/components/TabbedLayout/RoutedTabs.d.ts:9:5 - (ae-forgotten-export) The symbol "SubRoute_2" needs to be exported by the entry point index.d.ts
@@ -30,11 +30,10 @@ import {
import { StillTherePrompt } from './StillTherePrompt';
import { DefaultTimestampStore, TimestampStore } from './timestampStore';
/** @public */
export type AutoLogoutTrackableEvent = EventsType;
/**
* @public
*/
/** @public */
export type AutoLogoutProviderProps = {
/**
* Enable/disable the AutoLogoutMechanism.
@@ -79,6 +78,7 @@ export type AutoLogoutProviderProps = {
* The Autologout feature enables platform engineers to add a mechanism to log out users after a configurable amount of time of inactivity.
* When enabled, the mechanism will track user actions (mouse movement, mouse click, key pressing, taps, etc.) in order to determine if they are active or not.
* After a certain amount of inactivity/idle time, the user session is invalidated and they are required to sign in again.
*
* @public
*/
export const AutoLogoutProvider = ({
@@ -29,6 +29,7 @@ export type ConfigBasedAutoLogoutProviderProps = {};
/**
* A config based flavour of the AutoLogoutProvider.
* It allows to configure Autologout settings through `app-config`
*
* @public
*/
export const ConfigBasedAutoLogoutProvider = ({
@@ -18,5 +18,6 @@ import { LAST_SEEN_ONLINE_STORAGE_KEY } from './disconnectedUsers';
export * from './AutoLogoutProvider';
export * from './ConfigBasedAutoLogoutProvider';
/** @public */
export const AUTOLOGOUT_LAST_SEEN_ONLINE_STORAGE_KEY =
LAST_SEEN_ONLINE_STORAGE_KEY;