diff --git a/packages/backend-common/api-report.md b/packages/backend-common/api-report.md index f1d8a74dbe..5420500ae8 100644 --- a/packages/backend-common/api-report.md +++ b/packages/backend-common/api-report.md @@ -471,6 +471,20 @@ export class GitlabUrlReader implements UrlReader { toString(): string; } +// @public +export class HostDiscovery implements PluginEndpointDiscovery { + static fromConfig( + config: Config, + options?: { + basePath?: string; + }, + ): HostDiscovery; + // (undocumented) + getBaseUrl(pluginId: string): Promise; + // (undocumented) + getExternalBaseUrl(pluginId: string): Promise; +} + export { isChildPath }; // @public @@ -726,19 +740,8 @@ export type ServiceBuilder = { // @public export function setRootLogger(newLogger: winston.Logger): void; -// @public -export class SingleHostDiscovery implements PluginEndpointDiscovery { - static fromConfig( - config: Config, - options?: { - basePath?: string; - }, - ): SingleHostDiscovery; - // (undocumented) - getBaseUrl(pluginId: string): Promise; - // (undocumented) - getExternalBaseUrl(pluginId: string): Promise; -} +// @public @deprecated +export const SingleHostDiscovery: typeof HostDiscovery; // @public export type StatusCheck = () => Promise;