mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
* remove import from server folder * the other way around too
This commit is contained in:
parent
87a3946439
commit
ed5fe5fea3
6 changed files with 24 additions and 11 deletions
|
@ -10,7 +10,6 @@ import { getOr, assign } from 'lodash/fp';
|
|||
import * as React from 'react';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { SortFieldTimeline } from '../../../server/graphql/types';
|
||||
import {
|
||||
defaultHeaders,
|
||||
defaultColumnHeaderType,
|
||||
|
@ -20,7 +19,12 @@ import { AllTimelinesVariables } from '../../containers/timeline/all';
|
|||
|
||||
import { allTimelinesQuery } from '../../containers/timeline/all/index.gql_query';
|
||||
import { oneTimelineQuery } from '../../containers/timeline/one/index.gql_query';
|
||||
import { DeleteTimelineMutation, GetOneTimeline, TimelineResult } from '../../graphql/types';
|
||||
import {
|
||||
DeleteTimelineMutation,
|
||||
GetOneTimeline,
|
||||
TimelineResult,
|
||||
SortFieldTimeline,
|
||||
} from '../../graphql/types';
|
||||
import { Note } from '../../lib/note';
|
||||
import { State, timelineSelectors } from '../../store';
|
||||
import { addNotes as dispatchAddNotes } from '../../store/app/actions';
|
||||
|
|
|
@ -11,8 +11,14 @@ import { connect } from 'react-redux';
|
|||
|
||||
import chrome from 'ui/chrome';
|
||||
import { DEFAULT_INDEX_KEY } from '../../..';
|
||||
import { FlowDirection, FlowTarget } from '../../../server/graphql/types';
|
||||
import { DomainsEdges, DomainsSortField, GetDomainsQuery, PageInfo } from '../../graphql/types';
|
||||
import {
|
||||
DomainsEdges,
|
||||
DomainsSortField,
|
||||
GetDomainsQuery,
|
||||
FlowDirection,
|
||||
FlowTarget,
|
||||
PageInfo,
|
||||
} from '../../graphql/types';
|
||||
import { inputsModel, networkModel, networkSelectors, State } from '../../store';
|
||||
import { createFilter } from '../helpers';
|
||||
import { QueryTemplate, QueryTemplateProps } from '../query_template';
|
||||
|
|
|
@ -11,8 +11,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import chrome from 'ui/chrome';
|
||||
import { DEFAULT_INDEX_KEY } from '../../..';
|
||||
import { FlowTarget } from '../../../server/graphql/types';
|
||||
import { TlsEdges, TlsSortField, GetTlsQuery, PageInfo } from '../../graphql/types';
|
||||
import { FlowTarget, PageInfo, TlsEdges, TlsSortField, GetTlsQuery } from '../../graphql/types';
|
||||
import { inputsModel, networkModel, networkSelectors, State } from '../../store';
|
||||
import { createFilter } from '../helpers';
|
||||
import { QueryTemplate, QueryTemplateProps } from '../query_template';
|
||||
|
|
|
@ -11,8 +11,13 @@ import { connect } from 'react-redux';
|
|||
|
||||
import chrome from 'ui/chrome';
|
||||
import { DEFAULT_INDEX_KEY } from '../../..';
|
||||
import { FlowTarget } from '../../../server/graphql/types';
|
||||
import { GetUsersQuery, PageInfo, UsersEdges, UsersSortField } from '../../graphql/types';
|
||||
import {
|
||||
GetUsersQuery,
|
||||
FlowTarget,
|
||||
PageInfo,
|
||||
UsersEdges,
|
||||
UsersSortField,
|
||||
} from '../../graphql/types';
|
||||
import { inputsModel, networkModel, networkSelectors, State } from '../../store';
|
||||
import { createFilter } from '../helpers';
|
||||
import { QueryTemplate, QueryTemplateProps } from '../query_template';
|
||||
|
|
|
@ -4,9 +4,8 @@
|
|||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
|
||||
import { TimelineResult } from '../../server/graphql/types';
|
||||
import { OpenTimelineResult } from '../components/open_timeline/types';
|
||||
import { GetAllTimeline, SortFieldTimeline, Direction } from '../graphql/types';
|
||||
import { GetAllTimeline, SortFieldTimeline, TimelineResult, Direction } from '../graphql/types';
|
||||
import { allTimelinesQuery } from '../containers/timeline/all/index.gql_query';
|
||||
|
||||
export interface MockedProvidedQuery {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
import { LastEventTimeRequestOptions } from './types';
|
||||
import { LastEventIndexKey } from '../../graphql/types';
|
||||
import { assertUnreachable } from '../../../public/lib/helpers';
|
||||
import { assertUnreachable } from '../../utils/build_query';
|
||||
|
||||
interface EventIndices {
|
||||
[key: string]: string[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue