remove alpha, and the creator options type

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2025-04-22 11:38:19 +02:00
parent dea8051c0e
commit 52c951bd2c
7 changed files with 1 additions and 75 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/plugin-catalog-backend-module-incremental-ingestion': minor
---
**BREAKING** Removed support for the legacy backend, please [migrate to the new backend system](https://github.com/backstage/backstage/tree/v1.38.0/plugins/catalog-backend-module-incremental-ingestion#installation).
**BREAKING** Removed support for the legacy backend, please [migrate to the new backend system](https://github.com/backstage/backstage/tree/v1.38.0/plugins/catalog-backend-module-incremental-ingestion#installation). Also, if you were importing from the `/alpha` export of this package, you should remove the `/alpha` part.
@@ -22,16 +22,12 @@
"license": "Apache-2.0",
"exports": {
".": "./src/index.ts",
"./alpha": "./src/alpha.ts",
"./package.json": "./package.json"
},
"main": "src/index.ts",
"types": "src/index.ts",
"typesVersions": {
"*": {
"alpha": [
"src/alpha.ts"
],
"package.json": [
"package.json"
]
@@ -1,13 +0,0 @@
## API Report File for "@backstage/plugin-catalog-backend-module-incremental-ingestion"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
// @alpha @deprecated (undocumented)
const _feature: BackendFeature;
export default _feature;
// (No @packageDocumentation comment for this package)
```
@@ -4,18 +4,12 @@
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
import { DatabaseService } from '@backstage/backend-plugin-api';
import type { DeferredEntity } from '@backstage/plugin-catalog-node';
import { EventParams } from '@backstage/plugin-events-node';
import { ExtensionPoint } from '@backstage/backend-plugin-api';
import { HumanDuration } from '@backstage/types';
import { IncrementalEntityProvider as IncrementalEntityProvider_2 } from '@backstage/plugin-catalog-backend-module-incremental-ingestion';
import { IncrementalEntityProviderOptions as IncrementalEntityProviderOptions_2 } from '@backstage/plugin-catalog-backend-module-incremental-ingestion';
import { PermissionsService } from '@backstage/backend-plugin-api';
import { RootConfigService } from '@backstage/backend-plugin-api';
import { RootLoggerService } from '@backstage/backend-plugin-api';
import { SchedulerService } from '@backstage/backend-plugin-api';
import { UrlReaderService } from '@backstage/backend-plugin-api';
// @public
const catalogModuleIncrementalIngestionEntityProvider: BackendFeature;
@@ -81,14 +75,4 @@ export interface IncrementalIngestionProviderExtensionPoint {
// @public
export const incrementalIngestionProvidersExtensionPoint: ExtensionPoint<IncrementalIngestionProviderExtensionPoint>;
// @public (undocumented)
export type PluginEnvironment = {
logger: RootLoggerService;
database: DatabaseService;
scheduler: SchedulerService;
config: RootConfigService;
reader: UrlReaderService;
permissions: PermissionsService;
};
```
@@ -1,24 +0,0 @@
/*
* Copyright 2023 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { default as feature } from './module';
/**
* @alpha
* @deprecated Please import from `@backstage/plugin-catalog-backend-module-incremental-ingestion` instead
*/
const _feature = feature;
export default _feature;
@@ -27,5 +27,4 @@ export {
type IncrementalEntityEventResult,
type IncrementalEntityProvider,
type IncrementalEntityProviderOptions,
type PluginEnvironment,
} from './types';
@@ -15,14 +15,8 @@
*/
import {
DatabaseService,
LoggerService,
PermissionsService,
RootConfigService,
RootLoggerService,
SchedulerService,
SchedulerServiceTaskFunction,
UrlReaderService,
} from '@backstage/backend-plugin-api';
import type {
DeferredEntity,
@@ -184,16 +178,6 @@ export interface IncrementalEntityProviderOptions {
rejectEmptySourceCollections?: boolean;
}
/** @public */
export type PluginEnvironment = {
logger: RootLoggerService;
database: DatabaseService;
scheduler: SchedulerService;
config: RootConfigService;
reader: UrlReaderService;
permissions: PermissionsService;
};
export interface IterationEngine {
taskFn: SchedulerServiceTaskFunction;
}