From d0db4a56f103b6fd0e790f6bbb9e00f5e51cef6b Mon Sep 17 00:00:00 2001 From: goenning Date: Wed, 22 Dec 2021 17:14:24 +0000 Subject: [PATCH] update api reports Signed-off-by: goenning --- plugins/tech-insights-backend-module-jsonfc/api-report.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/tech-insights-backend-module-jsonfc/api-report.md b/plugins/tech-insights-backend-module-jsonfc/api-report.md index 7093fbfc2b..2e62e7d6a0 100644 --- a/plugins/tech-insights-backend-module-jsonfc/api-report.md +++ b/plugins/tech-insights-backend-module-jsonfc/api-report.md @@ -8,6 +8,7 @@ import { CheckResponse } from '@backstage/plugin-tech-insights-common'; import { CheckValidationResponse } from '@backstage/plugin-tech-insights-node'; import { FactChecker } from '@backstage/plugin-tech-insights-node'; import { Logger as Logger_2 } from 'winston'; +import { Operator } from 'json-rules-engine'; import { TechInsightCheck } from '@backstage/plugin-tech-insights-node'; import { TechInsightCheckRegistry } from '@backstage/plugin-tech-insights-node'; import { TechInsightsStore } from '@backstage/plugin-tech-insights-node'; @@ -50,6 +51,7 @@ export class JsonRulesEngineFactChecker repository, logger, checkRegistry, + operators, }: JsonRulesEngineFactCheckerOptions); // (undocumented) getChecks(): Promise; @@ -68,6 +70,7 @@ export class JsonRulesEngineFactCheckerFactory { checks, logger, checkRegistry, + operators, }: JsonRulesEngineFactCheckerFactoryOptions); // (undocumented) construct(repository: TechInsightsStore): JsonRulesEngineFactChecker; @@ -78,6 +81,7 @@ export type JsonRulesEngineFactCheckerFactoryOptions = { checks: TechInsightJsonRuleCheck[]; logger: Logger_2; checkRegistry?: TechInsightCheckRegistry; + operators?: Operator[]; }; // @public @@ -86,6 +90,7 @@ export type JsonRulesEngineFactCheckerOptions = { repository: TechInsightsStore; logger: Logger_2; checkRegistry?: TechInsightCheckRegistry; + operators?: Operator[]; }; // @public (undocumented)