From 1fe43f4017cf031d8336320ecb1d752d8db64acc Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Wed, 14 Dec 2022 17:31:39 +0100 Subject: [PATCH] backend-app-api: update API report Signed-off-by: Patrik Oldsberg --- packages/backend-app-api/api-report.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/packages/backend-app-api/api-report.md b/packages/backend-app-api/api-report.md index 5008b1efe1..eba4517a1f 100644 --- a/packages/backend-app-api/api-report.md +++ b/packages/backend-app-api/api-report.md @@ -4,13 +4,12 @@ ```ts import { BackendFeature } from '@backstage/backend-plugin-api'; -import { BackendLifecycle } from '@backstage/backend-plugin-api'; import { Config } from '@backstage/config'; import { ExtensionPoint } from '@backstage/backend-plugin-api'; import { HttpRouterService } from '@backstage/backend-plugin-api'; -import { Logger } from '@backstage/backend-plugin-api'; -import { PermissionAuthorizer } from '@backstage/plugin-permission-common'; -import { PermissionEvaluator } from '@backstage/plugin-permission-common'; +import { LifecycleService } from '@backstage/backend-plugin-api'; +import { LoggerService } from '@backstage/backend-plugin-api'; +import { PermissionsService } from '@backstage/backend-plugin-api'; import { PluginCacheManager } from '@backstage/backend-common'; import { PluginDatabaseManager } from '@backstage/backend-common'; import { PluginEndpointDiscovery } from '@backstage/backend-common'; @@ -70,18 +69,22 @@ export type HttpRouterFactoryOptions = { // @public export const lifecycleFactory: ( options?: undefined, -) => ServiceFactory; +) => ServiceFactory; // @public (undocumented) -export const loggerFactory: (options?: undefined) => ServiceFactory; +export const loggerFactory: ( + options?: undefined, +) => ServiceFactory; // @public (undocumented) export const permissionsFactory: ( options?: undefined, -) => ServiceFactory; +) => ServiceFactory; // @public (undocumented) -export const rootLoggerFactory: (options?: undefined) => ServiceFactory; +export const rootLoggerFactory: ( + options?: undefined, +) => ServiceFactory; // @public (undocumented) export const schedulerFactory: (