Skip to content

Commit

Permalink
Fixing type error
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner committed Apr 21, 2023
1 parent 2e08716 commit 035ea30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/cases_api_integration/common/lib/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ import {
} from '@kbn/cases-plugin/common/api';
import { SignalHit } from '@kbn/security-solution-plugin/server/lib/detection_engine/rule_types/types';
import { ActionResult } from '@kbn/actions-plugin/server/types';
import { ESCasesConfigureAttributes } from '@kbn/cases-plugin/server/services/configure/types';
import { ESCaseAttributes } from '@kbn/cases-plugin/server/services/cases/types';
import type { SavedObjectsRawDocSource } from '@kbn/core/server';
import type { ConfigurePersistedAttributes } from '@kbn/cases-plugin/server/common/types/configure';
import { User } from '../authentication/types';
import { superUser } from '../authentication/users';
import { getSpaceUrlPrefix, setupAuth } from './helpers';
Expand Down Expand Up @@ -307,7 +307,7 @@ export const getConnectorMappingsFromES = async ({ es }: { es: Client }) => {
};

interface ConfigureSavedObject {
'cases-configure': ESCasesConfigureAttributes;
'cases-configure': ConfigurePersistedAttributes;
}

/**
Expand Down

0 comments on commit 035ea30

Please sign in to comment.