diff --git a/plugins/dynatrace/api-report.md b/plugins/dynatrace/api-report.md index 59fd145250..1677318a9f 100644 --- a/plugins/dynatrace/api-report.md +++ b/plugins/dynatrace/api-report.md @@ -14,8 +14,6 @@ export const dynatracePlugin: BackstagePlugin<{}, {}, {}>; // @public export const DynatraceTab: () => JSX.Element; -// Warning: (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}' -// // @public export const isDynatraceAvailable: (entity: Entity) => boolean; diff --git a/plugins/dynatrace/src/index.ts b/plugins/dynatrace/src/index.ts index c96c16201d..0c5da219a5 100644 --- a/plugins/dynatrace/src/index.ts +++ b/plugins/dynatrace/src/index.ts @@ -13,4 +13,5 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + export { dynatracePlugin, DynatraceTab, isDynatraceAvailable } from './plugin'; diff --git a/plugins/dynatrace/src/plugin.ts b/plugins/dynatrace/src/plugin.ts index 26ecb1aba1..1488ae7417 100644 --- a/plugins/dynatrace/src/plugin.ts +++ b/plugins/dynatrace/src/plugin.ts @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + import { dynatraceApiRef, DynatraceClient } from './api'; import { createApiFactory, @@ -55,7 +56,7 @@ export const dynatracePlugin = createPlugin({ /** * Checks if the entity has a dynatrace id annotation. * @public - * @param entity {Entity} - The entity to check for the dynatrace id annotation. + * @param entity - The entity to check for the dynatrace id annotation. */ export const isDynatraceAvailable = (entity: Entity) => Boolean(entity.metadata.annotations?.[DYNATRACE_ID_ANNOTATION]) || diff --git a/scripts/api-extractor.ts b/scripts/api-extractor.ts index 61f304730f..a508a13496 100644 --- a/scripts/api-extractor.ts +++ b/scripts/api-extractor.ts @@ -203,7 +203,6 @@ const ALLOW_WARNINGS = [ 'plugins/catalog-import', 'plugins/circleci', 'plugins/cost-insights', - 'plugins/dynatrace', 'plugins/git-release-manager', 'plugins/github-actions', 'plugins/github-deployments',