add api report without warnings

Signed-off-by: Christopher Diaz <codingdiaz@icloud.com>
This commit is contained in:
Christopher Diaz
2024-06-07 12:27:24 -04:00
committed by Fredrik Adelöw
parent 4118216077
commit abeb6b982e
3 changed files with 3 additions and 8 deletions
@@ -5,8 +5,6 @@
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
// Warning: (ae-missing-release-tag) "catalogModuleLogs" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
const catalogModuleLogs: () => BackendFeature;
export default catalogModuleLogs;
@@ -15,9 +15,8 @@
*/
/**
* The logs backend module for the catalog plugin.
* @public
* A catalog module that logs catalog errors using the logger service.
*
* @packageDocumentation
*/
export { catalogModuleLogs as default } from './module';
@@ -14,9 +14,6 @@
* limitations under the License.
*/
/**
* Logs catalog errors from events.
*/
import {
coreServices,
createBackendModule,
@@ -34,6 +31,7 @@ interface EventsParamsWithPayload extends EventParams {
eventPayload: EventsPayload;
}
/** @public */
export const catalogModuleLogs = createBackendModule({
pluginId: 'catalog',
moduleId: 'logs',