Skip to content

Commit

Permalink
Fixes type from missing backport
Browse files Browse the repository at this point in the history
  • Loading branch information
spong committed Jun 10, 2022
1 parent 05b774a commit da62c11
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import {
import {
AggregateRuleExecutionEvent,
BulkAction,
RelatedIntegrationArray,
RuleExecutionStatus,
} from '../../../../../common/detection_engine/schemas/common';
import {
Expand All @@ -33,6 +32,7 @@ import {
import {
RulesSchema,
GetAggregateRuleExecutionEventsResponse,
GetInstalledIntegrationsResponse,
} from '../../../../../common/detection_engine/schemas/response';

import {
Expand Down Expand Up @@ -425,8 +425,8 @@ export const fetchInstalledIntegrations = async ({
}: {
packages?: string[];
signal?: AbortSignal;
}): Promise<RelatedIntegrationArray> =>
KibanaServices.get().http.fetch<RelatedIntegrationArray>(
}): Promise<GetInstalledIntegrationsResponse> =>
KibanaServices.get().http.fetch<GetInstalledIntegrationsResponse>(
DETECTION_ENGINE_INSTALLED_INTEGRATIONS_URL,
{
method: 'GET',
Expand Down

0 comments on commit da62c11

Please sign in to comment.