Skip to content

Commit

Permalink
update imports for types moved to core security service packages (#18…
Browse files Browse the repository at this point in the history
…7121)

## Summary

Part of #186574

Updates imports for types available from the core-security packages.

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
TinaHeiligers and kibanamachine authored Jun 28, 2024
1 parent 304d469 commit a7fe7cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import type { AuthenticatedUser } from '@kbn/security-plugin-types-common';
import type { AuthenticatedUser } from '@kbn/core-security-common';

export interface AuthenticationServiceSetup {
/**
Expand Down
5 changes: 3 additions & 2 deletions x-pack/packages/security/plugin_types_public/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
"target/**/*"
],
"kbn_references": [
"@kbn/security-plugin-types-common",
"@kbn/core-user-profile-browser",
"@kbn/core-user-profile-common"
"@kbn/core-user-profile-common",
"@kbn/security-plugin-types-common",
"@kbn/core-security-common",
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

import type { KibanaRequest } from '@kbn/core/server';
import type { AuthenticatedUser } from '@kbn/security-plugin-types-common';
import type { AuthenticatedUser } from '@kbn/core-security-common';

import type { APIKeys } from './api_keys';

Expand Down
1 change: 1 addition & 0 deletions x-pack/packages/security/plugin_types_server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"@kbn/security-plugin-types-common",
"@kbn/core-user-profile-server",
"@kbn/core-security-server",
"@kbn/core-security-common"
]
}

0 comments on commit a7fe7cb

Please sign in to comment.