Update API report for backend defaults

Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
This commit is contained in:
Eric Peterson
2024-10-01 16:13:22 +02:00
parent 8fa3ec895f
commit 2bc52ff8bb
@@ -7,6 +7,8 @@ import { DatabaseService } from '@backstage/backend-plugin-api';
import { LifecycleService } from '@backstage/backend-plugin-api';
import { LoggerService } from '@backstage/backend-plugin-api';
import { RootConfigService } from '@backstage/backend-plugin-api';
import { RootLifecycleService } from '@backstage/backend-plugin-api';
import { RootLoggerService } from '@backstage/backend-plugin-api';
import { ServiceFactory } from '@backstage/backend-plugin-api';
// @public
@@ -27,6 +29,8 @@ export class DatabaseManager {
// @public
export type DatabaseManagerOptions = {
migrations?: DatabaseService['migrations'];
rootLogger?: RootLoggerService;
rootLifecycle?: RootLifecycleService;
};
// @public