fix api reports

Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
aramissennyeydd
2025-12-03 14:57:50 -05:00
parent 570b6ed139
commit feb70c3395
3 changed files with 21 additions and 12 deletions
@@ -5,7 +5,6 @@
```ts
import { ActionsRegistryService } from '@backstage/backend-plugin-api/alpha';
import { ActionsService } from '@backstage/backend-plugin-api/alpha';
import { InstanceMetadataService } from '@backstage/backend-plugin-api/alpha';
import { RootSystemMetadataService } from '@backstage/backend-plugin-api/alpha';
import { ServiceFactory } from '@backstage/backend-plugin-api';
@@ -23,13 +22,6 @@ export const actionsServiceFactory: ServiceFactory<
'singleton'
>;
// @alpha @deprecated (undocumented)
export const instanceMetadataServiceFactory: ServiceFactory<
InstanceMetadataService,
'root',
'singleton'
>;
// @alpha
export const rootSystemMetadataServiceFactory: ServiceFactory<
RootSystemMetadataService,
@@ -103,5 +103,26 @@ export const actionsServiceRef: ServiceRef<
'singleton'
>;
// @public (undocumented)
export interface RootSystemMetadataService {
// (undocumented)
getInstalledPlugins: () => Promise<
ReadonlyArray<RootSystemMetadataServicePluginInfo>
>;
}
// @public (undocumented)
export interface RootSystemMetadataServicePluginInfo {
// (undocumented)
readonly pluginId: string;
}
// @alpha
export const rootSystemMetadataServiceRef: ServiceRef<
RootSystemMetadataService,
'root',
'singleton'
>;
// (No @packageDocumentation comment for this package)
```
@@ -27,10 +27,6 @@ export type {
export type { ActionsService, ActionsServiceAction } from './ActionsService';
export type {
BackstageInstance,
SystemMetadataService,
} from './services/definitions/SystemMetadataService';
export {
actionsRegistryServiceRef,
actionsServiceRef,