From 581b1f8a3a2fa45857401bfa03e4d83898791650 Mon Sep 17 00:00:00 2001 From: Oleg S <97077423+RobotSail@users.noreply.github.com> Date: Thu, 16 Feb 2023 10:21:41 -0500 Subject: [PATCH] add api-report Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com> --- plugins/todo-backend/api-report.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/plugins/todo-backend/api-report.md b/plugins/todo-backend/api-report.md index 277c87fea9..3e3c4cb58c 100644 --- a/plugins/todo-backend/api-report.md +++ b/plugins/todo-backend/api-report.md @@ -3,10 +3,12 @@ > 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'; import { CatalogApi } from '@backstage/catalog-client'; import { CompoundEntityRef } from '@backstage/catalog-model'; import { Config } from '@backstage/config'; import express from 'express'; +import { HttpRouterService } from '@backstage/backend-plugin-api'; import { Logger } from 'winston'; import { ScmIntegrations } from '@backstage/integration'; import { UrlReader } from '@backstage/backend-common'; @@ -144,4 +146,15 @@ export interface TodoService { }, ): Promise; } + +// @alpha (undocumented) +export const todosPlugin: () => BackendFeature; + +// Warning: (ae-missing-release-tag) "TodosPluginDependencies" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export type TodosPluginDependencies = { + todoReader: TodoService; + http: HttpRouterService; +}; ```