api reports

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
Vincenzo Scamporlino
2024-06-20 12:11:08 +02:00
parent 5c4e876e62
commit 73a45650e2
8 changed files with 18 additions and 20 deletions
+1 -1
View File
@@ -194,7 +194,7 @@ export namespace coreServices {
const rootConfig: ServiceRef<RootConfigService, 'root'>;
const database: ServiceRef<DatabaseService, 'plugin'>;
const discovery: ServiceRef<DiscoveryService, 'plugin'>;
const health: ServiceRef<RootHealthService, 'root'>;
const rootHealth: ServiceRef<RootHealthService, 'root'>;
const httpAuth: ServiceRef<HttpAuthService, 'plugin'>;
const httpRouter: ServiceRef<HttpRouterService, 'plugin'>;
const lifecycle: ServiceRef<LifecycleService, 'plugin'>;
@@ -105,9 +105,9 @@ export namespace coreServices {
/**
* The service reference for the plugin scoped {@link RootHealthService}.
*/
export const health = createServiceRef<
export const rootHealth = createServiceRef<
import('./RootHealthService').RootHealthService
>({ id: 'core.health', scope: 'root' });
>({ id: 'core.rootHealth', scope: 'root' });
/**
* Authentication of HTTP requests.