-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
index.ts
54 lines (47 loc) · 1.79 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type { PluginInitializerContext } from '@kbn/core/server';
export { buildAgentStatusRuntimeField } from './services/agents/build_status_runtime_field';
export type {
AgentService,
AgentClient,
PackageService,
PackageClient,
AgentPolicyServiceInterface,
ArtifactsClientInterface,
Artifact,
ListArtifactsProps,
MessageSigningServiceInterface,
} from './services';
export { getRegistryUrl } from './services';
export { NamingCollisionError } from './services/epm/packages/custom_integrations/validation/check_naming_collision';
export type { FleetSetupContract, FleetSetupDeps, FleetStartContract } from './plugin';
export type {
ExternalCallback,
PutPackagePolicyUpdateCallback,
PostPackagePolicyDeleteCallback,
PostPackagePolicyPostDeleteCallback,
PostPackagePolicyCreateCallback,
FleetRequestHandlerContext,
PostPackagePolicyPostCreateCallback,
} from './types';
export { AgentNotFoundError, FleetUnauthorizedError } from './errors';
export { config } from './config';
export type { FleetConfigType } from './config';
export type { PackagePolicyClient } from './services/package_policy_service';
export { relativeDownloadUrlFromArtifact } from './services/artifacts/mappings';
export type {
FleetFromHostFileClientInterface,
FleetToHostFileClientInterface,
FleetFile,
HapiReadableStream,
FleetFileUpdatableFields,
} from './services/files/types';
export const plugin = async (initializerContext: PluginInitializerContext) => {
const { FleetPlugin } = await import('./plugin');
return new FleetPlugin(initializerContext);
};