backend-plugin-api: Remove deprecated exports

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2024-08-21 14:25:06 +02:00
parent 3bfbda0f28
commit f6870508a8
3 changed files with 9 additions and 27 deletions
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/backend-plugin-api': minor
---
Removed the following deprecated exports
- `BackendPluginConfig` use `CreateBackendPluginOptions`
- `BackendModuleConfig` use `CreateBackendModuleOptions`
- `ExtensionPointConfig` use `CreateExtensionPointOptions`
@@ -64,9 +64,6 @@ export interface BackendFeature {
$$type: '@backstage/BackendFeature';
}
// @public @deprecated (undocumented)
export type BackendModuleConfig = CreateBackendModuleOptions;
// @public
export interface BackendModuleRegistrationPoints {
// (undocumented)
@@ -85,9 +82,6 @@ export interface BackendModuleRegistrationPoints {
}): void;
}
// @public @deprecated (undocumented)
export type BackendPluginConfig = CreateBackendPluginOptions;
// @public
export interface BackendPluginRegistrationPoints {
// (undocumented)
@@ -356,9 +350,6 @@ export type ExtensionPoint<T> = {
$$type: '@backstage/ExtensionPoint';
};
// @public @deprecated (undocumented)
export type ExtensionPointConfig = CreateExtensionPointOptions;
// @public
export interface HttpAuthService {
credentials<TAllowed extends keyof BackstagePrincipalTypes = 'unknown'>(
@@ -37,21 +37,3 @@ export type {
CreateBackendModuleOptions,
CreateExtensionPointOptions,
};
/**
* @public
* @deprecated Use {@link CreateBackendPluginOptions} instead.
*/
export type BackendPluginConfig = CreateBackendPluginOptions;
/**
* @public
* @deprecated Use {@link CreateBackendModuleOptions} instead.
*/
export type BackendModuleConfig = CreateBackendModuleOptions;
/**
* @public
* @deprecated Use {@link CreateExtensionPointOptions} instead.
*/
export type ExtensionPointConfig = CreateExtensionPointOptions;