backend-plugin-api: Remove deprecated exports
Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user