From da62c11e3e21190bcb4a187ae1ece8691bfb102a Mon Sep 17 00:00:00 2001 From: Garrett Spong Date: Thu, 9 Jun 2022 22:17:43 -0600 Subject: [PATCH] Fixes type from missing backport --- .../detections/containers/detection_engine/rules/api.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/api.ts b/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/api.ts index 177b4daf9fdfd..86727e7d92761 100644 --- a/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/api.ts +++ b/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/api.ts @@ -23,7 +23,6 @@ import { import { AggregateRuleExecutionEvent, BulkAction, - RelatedIntegrationArray, RuleExecutionStatus, } from '../../../../../common/detection_engine/schemas/common'; import { @@ -33,6 +32,7 @@ import { import { RulesSchema, GetAggregateRuleExecutionEventsResponse, + GetInstalledIntegrationsResponse, } from '../../../../../common/detection_engine/schemas/response'; import { @@ -425,8 +425,8 @@ export const fetchInstalledIntegrations = async ({ }: { packages?: string[]; signal?: AbortSignal; -}): Promise => - KibanaServices.get().http.fetch( +}): Promise => + KibanaServices.get().http.fetch( DETECTION_ENGINE_INSTALLED_INTEGRATIONS_URL, { method: 'GET',