Skip to content

Commit fd29a13

Browse files
committed
Fix import paths (again)
1 parent 1e81d71 commit fd29a13

53 files changed

Lines changed: 53 additions & 53 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

x-pack/plugins/ingest_manager/common/types/models/agent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import { SavedObjectAttributes } from 'kibana/public';
7+
import { SavedObjectAttributes } from 'src/core/public';
88
import { AGENT_TYPE_EPHEMERAL, AGENT_TYPE_PERMANENT, AGENT_TYPE_TEMPORARY } from '../../constants';
99

1010
export type AgentType =

x-pack/plugins/ingest_manager/common/types/models/agent_config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import { SavedObjectAttributes } from 'kibana/public';
7+
import { SavedObjectAttributes } from 'src/core/public';
88
import {
99
Datasource,
1010
DatasourcePackage,

x-pack/plugins/ingest_manager/common/types/models/enrollment_api_key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
import { SavedObjectAttributes } from 'kibana/public';
6+
import { SavedObjectAttributes } from 'src/core/public';
77

88
export interface EnrollmentAPIKey {
99
id: string;

x-pack/plugins/ingest_manager/common/types/models/epm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// Follow pattern from https://github.com/elastic/kibana/pull/52447
88
// TODO: Update when https://github.com/elastic/kibana/issues/53021 is closed
9-
import { SavedObject, SavedObjectAttributes, SavedObjectReference } from 'kibana/public';
9+
import { SavedObject, SavedObjectAttributes, SavedObjectReference } from 'src/core/public';
1010

1111
export enum InstallationStatus {
1212
installed = 'installed',

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_breadcrumbs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import { ChromeBreadcrumb } from 'kibana/public';
7+
import { ChromeBreadcrumb } from 'src/core/public';
88
import { useCore } from './use_core';
99

1010
export function useBreadcrumbs(newBreadcrumbs: ChromeBreadcrumb[]) {

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
import React, { useContext } from 'react';
8-
import { CoreStart } from 'kibana/public';
8+
import { CoreStart } from 'src/core/public';
99

1010
export const CoreContext = React.createContext<CoreStart | null>(null);
1111

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_request/agent_config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
import { HttpFetchQuery } from 'kibana/public';
6+
import { HttpFetchQuery } from 'src/core/public';
77
import { useRequest, sendRequest } from './use_request';
88
import { agentConfigRouteService } from '../../services';
99
import {

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_request/epm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import { HttpFetchQuery } from 'kibana/public';
7+
import { HttpFetchQuery } from 'src/core/public';
88
import { useRequest, sendRequest } from './use_request';
99
import { epmRouteService } from '../../services';
1010
import {

x-pack/plugins/ingest_manager/public/applications/ingest_manager/hooks/use_request/use_request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
import { HttpSetup } from 'kibana/public';
6+
import { HttpSetup } from 'src/core/public';
77
import {
88
SendRequestConfig,
99
SendRequestResponse,

x-pack/plugins/ingest_manager/public/applications/ingest_manager/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { useObservable } from 'react-use';
99
import { HashRouter as Router, Redirect, Switch, Route, RouteProps } from 'react-router-dom';
1010
import { FormattedMessage } from '@kbn/i18n/react';
1111
import { EuiErrorBoundary } from '@elastic/eui';
12-
import { CoreStart, AppMountParameters } from 'kibana/public';
12+
import { CoreStart, AppMountParameters } from 'src/core/public';
1313
import { EuiThemeProvider } from '../../../../../legacy/common/eui_styled_components';
1414
import {
1515
IngestManagerSetupDeps,

0 commit comments

Comments
 (0)