docs: Update api-report

Signed-off-by: Jack Palmer <jackpalmer@spotify.com>
This commit is contained in:
Jack Palmer
2023-03-30 09:54:24 +01:00
parent 153f2427b4
commit 9bb32cd177
+16 -13
View File
@@ -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<string>;
// (undocumented)
getExternalBaseUrl(pluginId: string): Promise<string>;
}
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<string>;
// (undocumented)
getExternalBaseUrl(pluginId: string): Promise<string>;
}
// @public @deprecated
export const SingleHostDiscovery: typeof HostDiscovery;
// @public
export type StatusCheck = () => Promise<any>;